1 USER VISIBLE CHANGES BETWEEN TAO-2.5.16 and TAO-2.5.17
2 ======================================================
4 . Fixed compilation error in the TAO core when using C++20
6 . Fixed an issue with handling spaces in paths for TAO_IDL
8 . TAO_IDL: Fix open file error not mentioning the filename and not checking if
9 the file is actually a directory.
11 USER VISIBLE CHANGES BETWEEN TAO-2.5.15 and TAO-2.5.16
12 ======================================================
14 . TAO_IDL: Fix bug where floating point constant expressions fail to evaluate.
15 This bug was introduced in 2.5.14.
17 USER VISIBLE CHANGES BETWEEN TAO-2.5.14 and TAO-2.5.15
18 ======================================================
20 . Add support for Embarcadero C++ Builder 11.0 Alexandria using
23 USER VISIBLE CHANGES BETWEEN TAO-2.5.13 and TAO-2.5.14
24 ======================================================
26 . Support for IDL 4 explicitly-named integer types like `int64` in TAO_IDL.
27 Support for `uint8` and `int8` is limited in TAO. Unlike the larger types,
28 these are new distinct types that are not aliases of existing types covered
29 by the CORBA specification.
31 . Added the `tao/idl_features.h` header file for getting the IDL features
32 supported by TAO_IDL. See the file for example usage.
34 . Fix empty case evaluation on unions with enum discriminators
36 USER VISIBLE CHANGES BETWEEN TAO-2.5.12 and TAO-2.5.13
37 ======================================================
39 . Fix wstring coerce leak in tao_idl
41 . Support C++ Keywords in `DCPS_DATA_SEQUENCE_TYPE`
43 . TAO can be built from a path that contains spaces
47 USER VISIBLE CHANGES BETWEEN TAO-2.5.11 and TAO-2.5.12
48 ======================================================
50 . Removed usage of narrow_from_decl and narrow_from_scope
51 from TAO_IDL, use dynamic_cast now that we have RTTI. Any
52 user that has a custom backend should make the similar
53 changes to their own TAO_IDL backend
55 USER VISIBLE CHANGES BETWEEN TAO-2.5.10 and TAO-2.5.11
56 ======================================================
58 . Simplified some code generated by tao_idl
60 USER VISIBLE CHANGES BETWEEN TAO-2.5.9 and TAO-2.5.10
61 =====================================================
63 . TAO IDL Frontend annotation support extended: (#1125)
64 . All the direct contents of interfaces
65 . Porttypes, eventtypes, components, and all their direct contents
66 . Valuetypes and most of their direct contents
68 . TAO IDL now supports anonymous types when using IDL4. (#1135)
70 USER VISIBLE CHANGES BETWEEN TAO-2.5.8 and TAO-2.5.9
71 ====================================================
73 . With C++11 we are now using (u)int8/16/32/64 to map all
76 USER VISIBLE CHANGES BETWEEN TAO-2.5.7 and TAO-2.5.8
77 ====================================================
79 . Fixed handling of transient errors with DII requests
81 . Renamed `VERSION` file to `VERSION.txt` to avoid conflicting with the
82 `version` standard header.
84 USER VISIBLE CHANGES BETWEEN TAO-2.5.6 and TAO-2.5.7
85 ====================================================
87 . Fixed deprecated-copy warnings in TAO_IDL generated code
89 . The TAO IDL Frontend now supports annotations on interfaces, operations, and
92 . `idl_global->eval` in the TAO IDL Frontend will now produce error and warning
93 messages. This can be silenced by passing `true` as a second argument. (#967)
95 . Expanded documentation on what can be annotated and roughly how to extend
96 annotation support in `TAO_IDL/docs/annotations.md`. Also made various
99 . Fixed invalid free in the TAO IDL Frontend while parsing an IDL wstring
102 USER VISIBLE CHANGES BETWEEN TAO-2.5.5 and TAO-2.5.6
103 ====================================================
105 . Fixed race condition in ImplRepo on server shutdown/restart (#889)
107 USER VISIBLE CHANGES BETWEEN TAO-2.5.4 and TAO-2.5.5
108 ====================================================
110 . Fixed Memory Leaks in TAO_IDL caused by the addition of Annotations (#811)
112 . Changes in the Annotations API in TAO_IDL, see
113 TAO/TAO_IDL/docs/annotations.md section titled "TAO 2.5.5" for details.
115 USER VISIBLE CHANGES BETWEEN TAO-2.5.3 and TAO-2.5.4
116 ====================================================
118 . Enhanced the ImR to better handle a huge number
119 of servers which use the ImR heavily and each of
120 them does a frequent shutdown/start cycle
122 . The TAO_IDL frontend library now parses all IDL4
123 annotation-related syntax: using and defining annotations.
124 Use the tao_idl command-line options --idl-version and
125 --unknown-annotations to control annotation parsing.
126 Documentation on this feature is located in
127 TAO/TAO_IDL/docs/annotations.md.
129 . TAO_IDL now will return an error status code when
130 passing an invalid command line argument.
131 Backends will have to support this behavior
132 explicitly, see TAO/TAO_IDL/include/idl_defines.h
134 TAO_IDL also accepts new options such as -h,
135 --help, --version, and --syntax-only, the latter
136 of which won't generate any files, just check
137 syntax of the IDL file(s).
138 See tao_idl -h for details.
140 . When using IDL_Files in MPC, generated files will
141 now be placed in the current directory by default,
142 instead of the directory of the IDL file.
144 idlflags += -o <IDL_FILE_DIR>
145 gendir = <IDL_FILE_DIR>
146 to output generated files to where the IDL file
149 USER VISIBLE CHANGES BETWEEN TAO-2.5.2 and TAO-2.5.3
150 ====================================================
152 . Enhance ssliop and uiop corbaloc parsers
154 USER VISIBLE CHANGES BETWEEN TAO-2.5.1 and TAO-2.5.2
155 ====================================================
157 . Enhance logging within the ImR
159 . Enhance the behavior of the ImR with a per-client
160 activation mode and multiple clients starting in
163 . Modified the SSLIOP::Protocol_Factory::init to
164 process an "-SSLEcName" argument to set the ECDH
167 USER VISIBLE CHANGES BETWEEN TAO-2.5.0 and TAO-2.5.1
168 ====================================================
170 . Make use of std::atomic when C++11 or newer is enabled
171 for the CORBA reference counting
173 USER VISIBLE CHANGES BETWEEN TAO-2.4.8 and TAO-2.5.0
174 ====================================================
176 . The TAO core libraries now use std::unique_ptr instead
177 of std::auto_ptr when C++11 or newer is enabled
179 USER VISIBLE CHANGES BETWEEN TAO-2.4.7 and TAO-2.4.8
180 ====================================================
182 . Logging enhancements to the TAO core for some possible
185 USER VISIBLE CHANGES BETWEEN TAO-2.4.6 and TAO-2.4.7
186 ====================================================
188 . TAO_IDL parses and discards IDLv4 annotations (applying, not defining)
190 . Fixed Bug 1220 as it applies to the SHMIOP transport.
192 USER VISIBLE CHANGES BETWEEN TAO-2.4.5 and TAO-2.4.6
193 ====================================================
195 . Added support for IPv4-mapped IPv6 addresses in BiDirGIOP+SSLIOP.
197 . Fixed Bug 1220 as it applies to the SSLIOP transport.
199 USER VISIBLE CHANGES BETWEEN TAO-2.4.4 and TAO-2.4.5
200 ====================================================
202 . Extended TAO_IDL with a new -Gsd which enabled the generation of two
203 additional static operations for each interface. _desc_repository_id to
204 retrieve the repository id as string, second _desc_interface_name to
205 return the interface name. Both can be useful in template meta programming
206 use cases where we want to use the repository id or interface name
209 USER VISIBLE CHANGES BETWEEN TAO-2.4.3 and TAO-2.4.4
210 ====================================================
212 . Minor cleanup and fixes to the code generated by TAO_IDL
214 USER VISIBLE CHANGES BETWEEN TAO-2.4.2 and TAO-2.4.3
215 ====================================================
217 . Added enhanced hot-standby feature to FT_Naming_Service. Use
218 tao_ft_naming -h to get a list of new configuration options.
219 This feature addresses performance problems on heavily loaded systems.
221 USER VISIBLE CHANGES BETWEEN TAO-2.4.1 and TAO-2.4.2
222 ====================================================
224 . Fixed some problems with versioned namespaces in the
225 tao_idl generated code
227 . Removed the non-const Any extraction operators which
228 are deprecated within the IDL to C++ specification
229 for a long time. Reduces footprint and simplifies the
230 code. Make sure you are using 'const Foo*' as extraction
231 type for Foo instead of 'Foo*'.
233 USER VISIBLE CHANGES BETWEEN TAO-2.4.0 and TAO-2.4.1
234 ====================================================
236 . Reduced amount of warnings given by newer gcc/clang
237 versions on the generated tao_idl code
239 USER VISIBLE CHANGES BETWEEN TAO-2.3.4 and TAO-2.4.0
240 ====================================================
244 USER VISIBLE CHANGES BETWEEN TAO-2.3.3 and TAO-2.3.4
245 ====================================================
247 . ImR enhancement - Added a "force remove" option to the Implementation repository
248 that will remove a server entry from the ImR Locator repository and kill any
249 running instance with a single command.
251 . ImR enhancement - Fix to allow very large ( > 4K ) command line.
253 . ImR enhancement - Enhance the coordination between the Locator and the Activator
254 to tolerate running on heavily loaded systems, in particular when a server process
255 is slow to shut down, and a new server is started before the shutdown is complete
257 . LogWalker utility improvements for handling truncated GIOP buffer dumps, added
258 tracking thread first/last contact times.
260 . Fault-Tolerance improvement - Optimize performance on NFS mounted filesystems. First
261 a deadlock is resolved. Second, use of writer locks is minimized to only when writing
262 is necessary. Third, NFS occasionally causes transient EBADF errors on access, so
263 file access that results in a bad file error is retried before the error is reported
266 USER VISIBLE CHANGES BETWEEN TAO-2.3.2 and TAO-2.3.3
267 ====================================================
269 . Extended SL2 Security Manager to easily allow non-secure collocated
270 invocations but still disallow non-secure remote invocations
272 . Relaxed upper limit on POA Thread pool size.
274 . Fixed PICurrent improper reset issue. Now slot data is retained through an
277 . Bugzilla #4205 fixed.
279 . Defaulted IIOP endpoints on IPv6 enabled systems will no longer append localhost
280 to the IOR if there are no routable IPv6 addresses but there are routable IPv4
283 . Improved the performance of the FT-ImR while under very heavy loads.
285 . ImR now may be built on "uses_wchar" platforms.
287 . The temporary directory used by the tao_idl preprocessor may now
290 USER VISIBLE CHANGES BETWEEN TAO-2.3.1 and TAO-2.3.2
291 ====================================================
293 . New SSLIOP Factory option -SSLPassword <password descriptor> facilitates
294 distributing password protected private keys.
296 . New SSLIOP Factory option -SSLVersionList <list> constrains the list of
297 cypher versions allowed.
299 . New SSLIOP Factory option -SSLCheckHost enables a second layer of
300 authentication by comparing the sending hostname to the name or names in
301 the supplied certificate
303 USER VISIBLE CHANGES BETWEEN TAO-2.3.0 and TAO-2.3.1
304 ====================================================
306 . TAO is now hosted on github (https://github.com/DOCGroup/ATCD).
307 As part of the release process we now generate a ChangeLog
308 for each release which is stored in the ChangeLogs directory
310 . Fixed incorrect server status shown by tao_imr after a
311 crashed server has been given a shutdown command
313 USER VISIBLE CHANGES BETWEEN TAO-2.2.8 and TAO-2.3.0
314 ====================================================
316 . New feature added to constrain client ORBs using IIOP to only use local TCP
317 ports spanning a supplied range. Use new ORB_init parameters
318 -ORBIIOPClientPortBase <base> and -ORBIIOPClientPortSpan <count> to specify
319 a range from base to base + count. A base supplied without a span indicates
320 the client may use only a single port. A span supplied without a base is
323 . Fixed the manual activation mode of the Implementation Repository
325 . Reintroduced the restart attempt limiting of the Implementation Repository
327 . Fix a connection leak that occurred when the server side cache purged a
328 Thread-Per-Connection managed entry.
330 USER VISIBLE CHANGES BETWEEN TAO-2.2.7 and TAO-2.2.8
331 ====================================================
333 . Address a problem with Failover between primary and backup ImplRepo locators.
334 Access state information is now shared during a server restart allowing a client
335 to request a new server from either the ImR instance.
337 USER VISIBLE CHANGES BETWEEN TAO-2.2.6 and TAO-2.2.7
338 ====================================================
340 . Improved the performance of the load balancing feature of the tao_ft_naming
341 service. Now a global load balancing strategy may be set via the command line
342 using the new -l ["random"|"round_robin"] argument. The newly implemented
343 random strategy is lockless.
345 . Fixed active server detection when switching from the primary ImR locator to
348 . Added a new command for the windows NT Naming service CLI to set the service's
349 start up argv list without invoking regedit.
351 . Added a new command for the windows NT Notify service CLI to set the service's
352 start up argv list without invoking regedit.
354 USER VISIBLE CHANGES BETWEEN TAO-2.2.5 and TAO-2.2.6
355 ====================================================
357 . Fix bug with mt_noupcall that allowed upcalls while waiting for a new connection
359 . Improved the performance of dynamic thread pool when activating new threads
361 . Improved the performance of the SYNC_WITH_SERVER oneway synchronization when
362 used in conjunction with the CSD framework and POA thread pools
364 . Fix support for long double types when used with dynamic Anys
366 . Improve functionality and stability of running tests on
367 Android Virtual Device (AVD).
369 USER VISIBLE CHANGES BETWEEN TAO-2.2.4 and TAO-2.2.5
370 ====================================================
372 . Implementation Repository new features added.
373 - New tao_imr kill command to signal an otherwise unresponsive server.
374 - New tao_imr link command to identify groups of POAs that share a server.
375 - ImR is better able to avoid errantly starting multiple server instances.
377 . Added support for Embarcadero C++Builder XE5 using
378 bcc32 in debug and release mode
380 . Added support for Embarcadero C++Builder XE6 using
381 bcc32 in debug and release mode
383 USER VISIBLE CHANGES BETWEEN TAO-2.2.3 and TAO-2.2.4
384 ====================================================
386 . Added a new Client Strategy Factory option, -ORBDefaultSyncScope which
387 takes the label "None", "Transport", "Server", or "Target" to define the
388 sync scope to be used when a Messaging SyncScopePolicy is not in use.
390 . Improved recursive typecode handling
392 . Ended maintenance for Solaris 10 with Sun Studio
394 USER VISIBLE CHANGES BETWEEN TAO-2.2.2 and TAO-2.2.3
395 ====================================================
397 . Fix for extra CDR padding bytes following a request header when there are no
398 IN or INOUT arguments in the request. This happened when a request had at least
399 one OUT argument, and also had a service context that ended off a CDR alignment
400 boundary. While this is not a problem for TAO-TAO messaging, some non-TAO
401 servers will reject such requests with a MARSHAL exception. See bug 4141 for more
404 USER VISIBLE CHANGES BETWEEN TAO-2.2.1 and TAO-2.2.2
405 ====================================================
409 USER VISIBLE CHANGES BETWEEN TAO-2.2.0 and TAO-2.2.1
410 ====================================================
412 . Implementation Repository is better able to handle high request volume
413 particularly when registered servers are going up and down.
415 . Fixed several memory leaks in the Trading Service
417 . Added support for Embarcadero C++BuilderXE4 using
418 bcc32 in release mode
420 USER VISIBLE CHANGES BETWEEN TAO-2.1.9 and TAO-2.2.0
421 ====================================================
423 . Feature enhancement for the Implementation Repository, the command to
424 list currently active servers, confirmed with a ping, is now asynchronous
425 along with the rest of the implementation.
427 . Added the new -ORBListenerInterface UIPMC option to provide detailed control
428 over which IP interfaces are to be listened on for which mutlicast addresses.
429 This works in a similar way to the existing -ORBPreferredInterfaces
430 ORB_init command line option but for UDP server listeners instead of client
431 senders. See the TAO_UIPMC_Protocol_Factory section in the
432 docs/release/TAO/Options.html document for details. This option allows
433 UIPMC/MIOP to control which interfaces are used by the server to listen
434 for broadcast messages instead of only using the "default" interface.
436 If TAO is built with the #define TAO_ALLOW_UNICAST_MIOP in effect, the
437 normal error checking on joins is short circuited, such that MIOP can
438 be used to send to a unicast address instead of a broadcast group. In general
439 I would not recommend building TAO with this option set, end users should
440 concider using the DIOP protocol instead.
442 . Fix for long standing Valuetype non-conformance (Bugzilla_1391):
444 tao_idl generated ValueType OBV_* classes now also provide a
445 _copy_value() method where this class is supposed to be the final
446 "most derived" class. It is still left to the end user to provide
447 such a method in their own most derived class when this is not
448 the case (as only the final implimentation of the Valuetype will
449 know how this duplication is performed).
451 TAO can be built specifically to treat _copy_value() as a pure virtual
452 function (as per the standard, and now the default behaviour) or,
453 if #define TAO_VALUETYPE_COPY_VALUE_IS_NOT_PURE is defined during the
454 building of TAO, a non-pure virtual function (in which TAO does not
455 require an implimentation to provide the _copy_value() function as per
456 the previous TAO implimentations).
458 TAO doesn't normally use the _copy_value() fuction itself, but if
459 #define TAO_VALUETYPE_COPYING_ANY_INSERTION_USES_COPY_VALUE
460 is in effect during the build, valuetypes "copy" inserted into an any
461 will call _copy_value() instead of increasing the reference count of the
462 actual valuetype being "copied". In such cases obviosuly the _copy_value()
463 method is required to be implemented. There are problems taking this
464 general approach however, as the automatically generated _copy_value() is
465 not capable of duplicating cyclic graphs held in valuetypes, which
466 realistially require the reference counting insertions to be utalised
467 and/or knowledge of the actual use of the valuetype itself. This setting
470 USER VISIBLE CHANGES BETWEEN TAO-2.1.8 and TAO-2.1.9
471 ====================================================
473 . High performance implementation Repository [#4104] - The Implementation
474 Repository Locator has been reimplemented using AMI/AMH to avoid the
475 problem of nested upcalls under heavy load.
477 USER VISIBLE CHANGES BETWEEN TAO-2.1.7 and TAO-2.1.8
478 ====================================================
480 . Fault Tolerant Implementation Repository [#4091] - The Implementation
481 Repository Locator now supports a dual-redundant fault tolerant
482 configuration which provides replication and seamless failover between
483 the primary and backup locator servers.
485 . Implementation Repository interoperable with JacORB servers [#4101] -
486 The Implementation Repository can now be used to manage JacORB
487 3.3 or later application servers.
489 . Fault Tolerant Naming Service [#4092 & #4095] - A new Fault Tolerant
490 Naming Service (tao_ft_naming), provides dual-redundant fault tolerant
491 servers which utilize replication and seamless failover between the
492 primary and backup server. The Fault Tolerant Naming Service can be
493 used to provide load balancing capabilities (only the round-robin load
494 balancing strategy is currently supported) through the use object groups.
495 This feature is supported by a separate utility for managing the object
496 groups (tao_nsgroup) as well as a programatic interface via IDL.
498 . Configurable Persistence Mechanism [#4092] - Extracted persistence
499 mechanism used for storable naming context into Storable_* classes so
500 that it can be reused. Simplified use of storable read/write so that
501 it behaves more like C++ streams to read/write binary and CDR data.
502 Added support for creating a backup mechanism to accomodate
503 potentially corrupted files. Providing configurable hooks so
504 applications can decide if files are obsolete and need to be written
505 to the persistence store.
507 . ORB Dynamic Thread Pool [#4093] - Added a new ORB thread pool strategy
508 to dynamically adjust the number of threads which the ORB uses to
509 service received calls based on several configuration parameters.
510 These parameters include initial threads, minimum pool threads,
511 maximum pool threads, request queue depth, thread stack size, and
514 . POA Dynamic Thread Pool [#4094] - A new Dynamic Thread Pool and
515 Queuing strategy was created for POA usage. It leverages the
516 existing Custom Servant Dispatching framework for invocation and
517 activation. The strategy also dynamically adjusts the number of
518 threads using configuration parameters similar to the ORB Dynamic
519 Thread Pool. The Dynamic Thread Pool POA Strategy supports
520 applications in associating a single thread pool with either
521 1) a single POA in a dedicated configuration, or 2) multiple
522 POAs in a shared configuration. The strategy controls a request
523 queue used to accept calls directed to an associated servant and
524 a pool of threads that wait to service calls coming in on a
527 . Multiple Invocation Retry [#4096] - Extended TAO to support multiple
528 retry in the presence of COMM_FAILURE, TRANSIENT, OBJECT_NOT_EXIST,
529 and INV_OBJREF exceptions. In addition, retries can occur if it has
530 been detected that a connection has closed while waiting for a reply
531 (currently not available under FreeBSD, OpenVMS, AIX, and Solaris). This
532 feature can be used to support fault tolerant services (specifically
533 the Fault Tolerant Naming and Implementation Repository services
534 described earlier). The invocation retry support allows
535 configuration on how many times to try to connect to each server and
536 the delay between tries.
538 . Added MIOP configuration options -ORBSendThrottling and -ORBEagerDequeueing,
539 along with #define overrides for their default settings. See the descriptions
540 in the MIOP section of doc/Options.html for their use.
542 USER VISIBLE CHANGES BETWEEN TAO-2.1.6 and TAO-2.1.7
543 ====================================================
545 . Integrated several patches to simplify Debian/Ubuntu
548 . Fixed IDL compiler bug related to internal reinitialization
549 when processing multiple IDL files in a single execution.
551 USER VISIBLE CHANGES BETWEEN TAO-2.1.5 and TAO-2.1.6
552 ====================================================
554 . We only try to load the ObjRefTemplate library at POA
555 creation instead of trying to load it at each servant
558 USER VISIBLE CHANGES BETWEEN TAO-2.1.4 and TAO-2.1.5
559 ====================================================
563 USER VISIBLE CHANGES BETWEEN TAO-2.1.3 and TAO-2.1.4
564 ====================================================
566 . CORBA::string_dup() and CORBA::string_free() have been enhanced to use
567 non-allocated and shared static null strings. This allows for optimized
568 default null string initialization in CORBA string members and a
569 reduction in redundant dynamic memory management required for such.
570 This enhancement can be removed via the config.h by including
571 #define TAO_NO_SHARED_NULL_CORBA_STRING
573 NOTE that it is a (CORBA spec) requirement that all CORBA::strings are
574 deleted via the CORBA::string_free() and allocated via the
575 CORBA::string_dup() or CORBA::string_alloc() calls; you must not use
576 the c++ keywords new and delete[] directly. Previously it was possiable
577 to ignore this requirement, however if you do so now, this enhancement
578 for null strings will catch you out, as deleting these null
579 CORBA::strings will cause corrupt heap and/or segfaults.
581 . Add support for -ORBPreferredInterfaces option to UIPMC. The form follows
582 the same pattern as IIOP for IPv4 i.e. a local interface IP address should
583 be specified as the mapping. e.g. -ORBPreferredInterfaces 225.*=192.168.0.2.
584 For IPv6 the preferred interface should (neccessarily) be set as an interface
585 name (e.g. 'eth0' for linux, or 'Loopback Pseudo-Interface' on windows) or an
586 interface index number on windows. e.g. -ORBPreferredInterfaces FF01:*=eth0.
587 Also add support an -ORBListenOnAll 0|1 UIPMCFactory option that can
588 be specified in the svc.conf to make the acceptor listen on all multicast
589 enabled interfaces on platforms that this is not the default. This has been
590 observed to be required for the UIPMCAcceptor to open on the most recent
593 NOTE that there is an obvious elephant in the room in testing this option,
594 we can't rely on any build/test machine having more than one (or any?)
595 interfaces so the test (TAO/orbsvcs/tests/Miop/McastPreferredInterfaces),
596 such as it is, is relying on side effects which may not hold for all platforms.
597 Additionally the IPv6 behaviour isn't even consistent across platforms and
598 the build machines can't be relied upon to have a 'proper' (non-zero conf
599 link local) IPv6 configuration. Basically, if you want some confidence this is
600 actually working I'd advise testing this option before you use it, running it
601 on a machine with multiple interfaces with the debug level turned up.
603 . Enhanced the MIOP implementation; this protocol now supports MIOP message
604 fragmentation which is controlled via the new MIOP_Strategy_Factory.
605 For details see the MIOP_Strategy_Factory section in the docs/Options.html
606 document included with this distribution.
608 USER VISIBLE CHANGES BETWEEN TAO-2.1.2 and TAO-2.1.3
609 ====================================================
611 . Added OpenSSL configuration options SSLCipherList and
612 SSLServerCipherOrder to SSLIOP_Factory. Allows SSL/TLS BEAST
613 exploit to be mitigated.
615 USER VISIBLE CHANGES BETWEEN TAO-2.1.1 and TAO-2.1.2
616 ====================================================
618 . Changed behavior of Receive-Wait client wait strategy with
619 ORBConnectionHandlerCleanup after oneway calls to register with
620 the reactor after the call to clean up after connection closure.
622 . Added an extension of the CosNotifyFilter::FilterFactory to
623 allow removal of filters created by the factory. The extension
624 also has accessors for existing filters and ids.
626 USER VISIBLE CHANGES BETWEEN TAO-2.1.0 and TAO-2.1.1
627 ====================================================
629 . Correct ZIOP compression arbitration on the server reply
630 path. The server now responds with one of the clients
631 exposed compressors that the server also supports
632 according to the ZIOP specification.
634 . Enhanced the plugable transports such that the
635 send_message() api now provides an optional TAO_ServerRequest
636 object pointer to provide access to any client side
637 policies that are broadcast with each request. This enabled
638 the ZIOP compression correction to be coded.
640 USER VISIBLE CHANGES BETWEEN TAO-2.0.8 and TAO-2.1.0
641 ====================================================
643 . Added new rle compressor and enabled ZIOP by default
645 . Implimented DynValue, DynValueBox and DynValueCommon and their
646 creation/use by TAO_DynAnyFactory::
647 create_dyn_any (), create_dyn_any_from_type_code (),
648 create_dyn_any_without_truncation (), create_multiple_dyn_anys ()
649 and create_multiple_anys ().
651 . Correct the interaction of CORBA::ValueTypes and CORBA::Anys.
652 The insertion into an Any of a ValueType base pointer
653 used to set the Anys typecode to the fully derived valuetype.
654 This allowed the any to be marshaled correctly sending the
655 derived typecode and value over the wire. However it also
656 stopped the user from extracting the valuetype from the any
657 as the typecode for, or the actual pointer type being used for,
658 the extraction couldn't match the any's internal two different
659 types. The any's typecode is now simply set to match the base
660 pointer which allows for the correct insertion/extraction from
661 the any, whilst the marshalling code for anys containing
662 valuetypes now sends the fully derived typecode of the fully
663 derived data it is marshalling instead of the anys embedded
664 (possiably base valuetype) typecode.
666 USER VISIBLE CHANGES BETWEEN TAO-2.0.7 and TAO-2.0.8
667 ====================================================
669 . Added support for MPC's new feature that creates dependency files for IDL
670 files when generating '-type gnuace' projects. Turned off by default, it
671 can be enabled in a features file or on the command line with
672 '-features ace_idl_dependencies=1'.
674 . Fixed IDL compiler bug where a generated component servant method that
675 is called by the middleware to initialize a component's attributes
676 was not including attributes of supported interfaces.
678 USER VISIBLE CHANGES BETWEEN TAO-2.0.6 and TAO-2.0.7
679 ====================================================
681 . Added Time_Policy_Manager, a TIME_POLICY strategy manager configurable
682 through the service configurator framework.
683 This allows the dynamic configuration of the TIME_POLICY strategy used for
684 ORB timers and countdowns. TAO includes two default TIME_POLICY strategies as
685 statically linked service objects; TAO_System_Time_Policy_Strategy and
686 TAO_HR_Time_Policy_Strategy (the first being used as default strategy).
687 The docs/Options.html file describes the configuration options in detail.
688 Two new tests have been added exemplifying these new options; tests/Time_Policy
689 and tests/Time_Policy_Custom.
690 Furthermore two new compile time option macros have been added related to
691 TIME_POLICY strategies:
692 - TAO_USE_HR_TIME_POLICY_STRATEGY if defined will force the use of the new
693 TAO_HR_Time_Policy_Strategy as default time strategy instead of
694 TAO_System_Time_Policy_Strategy;
695 - TAO_HAS_TIME_POLICY if explicitly defined as 0 ('#define TAO_HAS_TIME_POLICY 0')
696 will build TAO without the new TIME_POLICY strategy support.
698 USER VISIBLE CHANGES BETWEEN TAO-2.0.5 and TAO-2.0.6
699 ====================================================
701 . Added new define TAO_DEFAULT_COLLOCATION_STRATEGY (default = thru_poa)
702 which is used as -ORBCollocationStrategy isn't specified.
704 . Added new -ORBCollocationStrategy best. TAO tries to perform the best
705 possible collocation, first direct if possible, then through_poa if possible
708 . Enhanced the RW -ORBWaitStrategy and the EXCLUSIVE -ORBTransportMuxStrategy
709 to also work with AMI requests.
711 . mt_noupcall has been improved and generically speaking the handling of client
712 leader threads in LF has been improved and fixed of potential deadlock
715 . The TAO skeletons got refactored to reduced footprint, a footprint saving
716 for the skeletons between 10 and 60% has been achieved. For the full
717 distribution including CIAO, DAnCE, OpenDDS, and DDS4CCM using RTI DDS this
718 resulted in a reduction of 650,000 lines of code. Also the S.inl files are
719 not generated anymore
721 USER VISIBLE CHANGES BETWEEN TAO-2.0.4 and TAO-2.0.5
722 ====================================================
724 . Updated several TAO tests for automatic testing on Android
726 USER VISIBLE CHANGES BETWEEN TAO-2.0.3 and TAO-2.0.4
727 ====================================================
729 . Added new IFR_Client_skel library that is now used by the IFR_Service
731 . Moved TAO_IDL generation of argument traits from the stub and
732 skeleton .cpp files to the corresponding .h files.
734 USER VISIBLE CHANGES BETWEEN TAO-2.0.2 and TAO-2.0.3
735 ====================================================
737 . Improved support for mt_noupcall but this is still not optimal due to a 2ms
740 . Addressed several Coverity reported issues
742 USER VISIBLE CHANGES BETWEEN TAO-2.0.1 and TAO-2.0.2
743 ====================================================
745 . Remove support for already deprecated -ORBConnectionCachingStrategy
747 . Removed -ORBObjectKeyTableLock and -ORBPOALock, very risk options and this
748 way the regular invocation path can be optimized much more
750 . Improved support for mt_noupcall wait strategy. Upcall detection has been
751 improved and the transport is polled each 2ms to see if we can do the
754 . Improved performance of the Parallel Connect Strategy in TAO.
756 . tao_catior does a better job with JacORB generated IORs.
758 . tao_cosnaming can now be multithreaded.
760 USER VISIBLE CHANGES BETWEEN TAO-2.0.0 and TAO-2.0.1
761 ====================================================
763 . Fixed IDL compiler bug that caused illegal references to items
764 in the scope of a template module to be overlooked.
766 USER VISIBLE CHANGES BETWEEN TAO-1.8.3 and TAO-2.0.0
767 ====================================================
769 . Improved support for abstract
771 USER VISIBLE CHANGES BETWEEN TAO-1.8.2 and TAO-1.8.3
772 ====================================================
774 . TAO IDL compiler now generates attribute members for generated CCM
775 executor implementation classes, as well as full implementations for
776 the associated set/get operations.
778 . Add TAO IDL compiler command line option -iC, which overrides the
779 default include path (current directory or $TAO_ROOT/tao) for
780 *C.h files included in generated *A.h files.
782 . Removed autoconf support for TAO, it is really not tested, unstable, and
783 unmaintainable at this moment
785 . The TAO IDL compiler now gives the following error when anonymous
786 types are used: 'anonymous types are deprecated by OMG spec'.
787 One can changes this error into a warning. There's also a possibility
788 to silence the TAO IDL compiler about this message. One of the following
789 defines can be added to your config.h file in order to change the behavior
790 of the TAO IDL compiler:
791 * IDL_ANON_ERROR: The TAO IDL generates an error when it encounters
792 an anonymous type (default behavior).
793 * IDL_ANON_WARNING: The TAO IDL generates a warning when it encounters
795 * ANON_TYPE_SILENT: The TAO IDL doesn't generate a warning nor an error
796 when it encounters an anonymous type.
798 . Renamed ALL ORB services executables. This because of
799 the fact that the TAO ORB services should be recognizable
800 between the ORB services of other CORBA vendors. There are
801 systems where ORB services of several CORBA vendors are
802 installed (mainly via the installed packages). The following
803 rename actions have been taken place:
804 * 'LifeCycle_Service' to 'tao_coslifecycle'
805 * 'Dump_Schedule' to 'tao_dump_schedule'
806 * 'NT_Notify_Service' to 'tao_nt_cosnotification'
807 * 'Notify_Service' to 'tao_cosnotification'
808 * 'FT_ReplicationManager' to 'tao_ft_replicationmanager'
809 * 'IFR_Service' to 'tao_ifr_service'
810 * 'TAO_Service' to 'tao_service'
811 * 'Fault_Detector' to 'tao_fault_detector'
812 * 'Scheduling_Service' to 'tao_cosscheduling'
813 * 'Basic_Logging_Service' to 'tao_tls_basic'
814 * 'Notify_Logging_Service' to 'tao_tls_notify'
815 * 'Event_Logging_Service' to 'tao_tls_event'
816 * 'RTEvent_Logging_Service' to 'tao_tls_rtevent'
817 * 'Naming_Service' to 'tao_cosnaming'
818 * 'NT_Naming_Service' to 'tao_nt_cosnaming'
819 * 'CosEvent_Service' to 'tao_cosevent'
820 * 'Event_Service' to 'tao_rtevent'
821 * 'LoadManager' to 'tao_loadmanager'
822 * 'LoadMonitor' to 'tao_loadmonitor'
823 * 'Trading_Service' to 'tao_costrading'
824 * 'Time_Service_Server' to 'tao_costime_server'
825 * 'Time_Service_Clerk' to 'tao_costime_clerk'
826 * 'ImplRepo_Service' to 'tao_imr_locator'
827 * 'ImR_Activator' to 'tao_imr_activator'
828 * 'Fault_Notifier' to 'tao_fault_notifier'
829 * 'Concurrency_Service' to 'tao_cosconcurrency'
831 . Fixed several bugs related to recursive typecodes
833 USER VISIBLE CHANGES BETWEEN TAO-1.8.1 and TAO-1.8.2
834 ====================================================
836 . Extended logging related to the POA active object map
838 USER VISIBLE CHANGES BETWEEN TAO-1.8.0 and TAO-1.8.1
839 ====================================================
843 - Added code generation for an empty implementation of
844 the reply handler interface generated as part of an
845 AMI4CCM connector, triggered by the same option, -Gex,
846 that generates a similar implementation for a
849 - Added flags that can be defined in config.h to output
850 an error or warning if an anonymous IDL construct is
851 seen by the IDL compiler. Also added IDL compiler
852 options to do the same (or override a global flag)
853 for individual IDL files.
855 USER VISIBLE CHANGES BETWEEN TAO-1.7.9 and TAO-1.8.0
856 ====================================================
858 . Added minimal exploratory support for alternate IDL->C++
859 mapping: IDL string->std::string and IDL sequence->std:vectors.
860 We are talking with sponsors to see if we can raise funds
861 to make a full new IDL to C++ mapping proposal that uses
862 all new C++0x features
864 . Fixed bugzilla #3853.
866 . Improved the speed of tao_idl when processing
867 large input files with many module re-openings.
869 . Removed MCPP support from TAO_IDL.
871 . Extended support for CIAO DDS4CCM and AMI4CCM in TAO_IDL
873 USER VISIBLE CHANGES BETWEEN TAO-1.7.8 and TAO-1.7.9
874 ====================================================
876 . TAO's default makefiles (traditional ACE/GNU, not autoconf/automake)
877 now support installation with "make install".
878 Please see the ACE-INSTALL.html file for instructions.
880 . Refactored several parts of TAO_IDL
882 USER VISIBLE CHANGES BETWEEN TAO-1.7.7 and TAO-1.7.8
883 ====================================================
885 . Added -ORBHandleLoggingStrategyEvents option. Given
886 that ORB is run in user application this option allows
887 to easily add log file rotation.
889 . Added a new option -ORBIgnoreDefaultSvcConfFile.
890 This allows TAO to ignore only svc.conf file while
891 processing normally other user provided configuration
894 USER VISIBLE CHANGES BETWEEN TAO-1.7.6 and TAO-1.7.7
895 ====================================================
897 . Add IDL3+ support to TAO_IDL
899 . Cleanup in TAO_IDL. Part of this cleanup closes
902 USER VISIBLE CHANGES BETWEEN TAO-1.7.5 and TAO-1.7.6
903 ====================================================
905 . Added support for iPhone/iPod Touch/iPad. The following
906 environment variables are needed:
908 IPHONE_TARGET, should be set to either SIMULATOR or
909 HARDWARE. Set to HARDWARE if you want to deploy
910 on the iPhone/iPod Touch/iPad device.
912 IPHONE_VERSION, should be set to 3.1.2 or 3.2. One can
913 set the version to any future or past versions, but
914 only 3.1.2 and 3.2 have been tried.
916 Note that one has to compile ACE/TAO statically as
917 it is believed that the iPhone OS does not support
918 dynamic loading of external libraries. The usual
919 procedure of cross compiling ACE/TAO applies
920 (such as setting HOST_ROOT environment variable).
922 . Added support for IDL template modules in the IDL
923 compiler front end. This is partly tested, some
924 parts do work, some not yet
926 . Fixed bug in optional ostream operator generation
929 . Added member validation feature to LoadBalancer.
931 . Add support for valuetype repository id and value
932 on both input and output streams.
934 . Added support for Embarcadero C++ Builder 2010
936 . Added method TAO_Leader_Follower::set_new_leader_generator().
938 . Fixed missing request id in logging of LocateRequest/LocateReply &
941 . Fixed problems with ORB shutdown in combination with active
944 USER VISIBLE CHANGES BETWEEN TAO-1.7.4 and TAO-1.7.5
945 ====================================================
947 . Converted a lot of TAO tests to use the new test framework
949 . Fix problem in the IDL compiler where set/get methods for
950 attributes in a local interface derived from a non local interface
951 where not regenerated as pure virtual
953 . Fixed some bugs concerning spaces within roots, to allow TAO_IDL
954 to be used by user projects that are installed on windows paths
955 such as "c:\Project Files\..." or "c:\Documents and Settings\.."
958 . The IDL3+ keywords porttype/port/mirrorport are now fully
959 implemented and tested
961 . Fixed bug in code generation for components, where a derived
962 component or home with more than one generation of ancestors
963 was missing inherited operations in its operation table
965 . Merged in changes from OCI's distribution which originate from
966 OCI request ticket [RT 13596, RT 13704].
968 - Added queue-overflow statistics to the Notification Service MC.
969 - Modified Notification Service MC to work in static builds.
970 - Corrected an error that caused Notification Service MC statistics
971 to fail when -AllocateTaskPerProxy is used.
972 - QueueDepth have been changed to measure the number of entries
973 rather than attempting unsuccessfully to estimate the amount of
974 memory used by the queue.
975 - Added TAO_EXPLICIT_NEGOTIATE_CODESETS macro to improve the ease
976 of including optional codeset support to Notify_Service in static
978 - Added new MPC features (notify_monitor_control and
980 - fixed ACE_Logging_Stragey service loading issue in static builds.
982 USER VISIBLE CHANGES BETWEEN TAO-1.7.3 and TAO-1.7.4
983 ====================================================
985 . Initial support for IDL3+ in the TAO_IDL compiler front end.
986 IDL3+ is an extension to IDL3 driven by the DDS4CCM draft
987 standard. IDL3+ adds a porttype which is a logical grouping
988 of CCM ports and a concept of templates (like C++)
990 . Changed behaviour of -Glem and -Glfa
992 . Ported a large set of TAO tests to the new test framework
994 . Added a capability to throw BAD_PARAM exception in case
995 there is an attempt to access sequence elements above
996 sequence length. By default this capability is turned on
997 in debug builds with defining TAO_CHECKED_SEQUENCE_INDEXING.
998 BAD_PARAM exception is also thrown in case a new sequence
999 length for bounded sequence is greater than the bound
1002 USER VISIBLE CHANGES BETWEEN TAO-1.7.2 and TAO-1.7.3
1003 ====================================================
1005 . Merged in changes from OCI's distribution which
1006 originate from OCI request ticket [RT 12994]. Added
1007 following ORB options.
1009 -ORBForwardOnceOnObjectNotExist [0|1]
1010 -ORBForwardOnceOnCommFailure [0|1]
1011 -ORBForwardOnceOnTransient [0|1]
1012 -ORBForwardOnceOnInvObjref [0|1]
1014 The -ORBForwardOnceOnObjectNotExist ORB option is added
1015 to avoid side effect from
1016 -ORBForwardInvocationOnObjectNotExist that could cause
1017 the request fall into forward loop in some use cases
1018 (e.g. client sends request while servant is deactivated).
1019 The other options are added for the same purpose to avoid
1020 possible forward loop upon specified exceptions.
1022 . Corrected TAO_IDL dds code generation to count WChar size for wstring
1025 USER VISIBLE CHANGES BETWEEN TAO-1.7.1 and TAO-1.7.2
1026 ====================================================
1028 . Extended IDL compiler to take over all code generation from
1029 the CIAO CIDL compiler, which has been eliminated.
1030 See $TAO_ROOT/docs/compiler.html for details.
1032 . Added code generation for export header files. See
1033 $TAO_ROOT/docs/compiler.html for details.
1035 USER VISIBLE CHANGES BETWEEN TAO-1.7.0 and TAO-1.7.1
1036 ====================================================
1038 . Improved Unicode compatibility.
1040 . Improved service configuration processing.
1042 USER VISIBLE CHANGES BETWEEN TAO-1.6.9 and TAO-1.7.0
1043 ====================================================
1045 . Merged in changes from OCI's distribution which originate from
1046 OCI request ticket [RT 12912]. In their totality, the changes
1047 added new features for IMR to support the capability of client
1048 automatically reconnects servers within same port range upon
1049 server restart. The ServerId is added to ServerInfo in IMR to
1050 help identify server process. The -UnregisterIfAddressReused
1051 option is added to IMR to enable the address reuse checking
1052 upon server registering. The servers that address is reused
1053 are unregistered from IMR. The -ORBForwardInvocationOnObjectNotExist
1054 option is added to forward request to next available profile
1055 upon receiving OBJECT_NOT_EXIST exception reply.
1057 . The -ORBRunThreads of the notification service has been renamed
1058 to -RunThreads and the notification service can now be loaded
1061 . Updated ZIOP to match the OMG Beta 2 specification
1063 . Added a new utility, tao_logWalker, see utils/logWalker for details.
1064 This tool analises a collection of log files containing output of
1065 TAO running with -ORBDebuglevel 10, and generates a report showing
1066 process, thread and invocation summaries.
1068 . Fixed bug in Notification Service that the filter constraint expressions
1069 are ignored when event type domain_name or type_name is specified
1072 . The MCPP version optionally used by TAO_IDL has been updated to 2.7.2.
1073 Efforts have been taken to port this to as many platforms as possible,
1074 however, since it is not currently the default configuration it may
1075 not work across all platforms.
1077 USER VISIBLE CHANGES BETWEEN TAO-1.6.8 and TAO-1.6.9
1078 ====================================================
1080 . Reply Dispatchers are refactored. No deadlock occurs when an
1081 (a)synchronous CORBA call is made during dispatching a reply.
1083 . Fixed IDL compiler bug that in some cases caused code generation for
1084 inherited operations to be skipped.
1086 . The Transport Cache Size maximum is now a hard maximum.
1088 . Fixed several bugs related to the purging of transports when the cache
1091 . New TAO-specific feature of Notification service improves management
1092 of proxies when peer goes away without disconnecting from proxy. See
1093 orbsvcs/Notify_Service/README for details in the svc.conf section.
1095 . Improved Notification topology persistence, now persists filters.
1097 . Updated ZIOP to match the beta 1 OMG specification.
1099 USER VISIBLE CHANGES BETWEEN TAO-1.6.7 and TAO-1.6.8
1100 ====================================================
1102 . Fixed race condition when multiple threads make a connection to the
1103 same server (bugzilla 3543)
1105 . Updated several tests to the new test framework
1107 . Fixed several memory leaks and make sure the TAO singletons are
1108 destructed when the TAO DLL gets unloaded
1110 . Improved WinCE unicode support and extended the number of tests that
1111 can be run with WinCE
1113 . Fixed some race conditions in the transport cache. There are several
1114 known issues resolved in the transport cache when it starts purging.
1116 . Fixed memory leak in string and object reference sequences.
1118 . Bugs fixed: 3078, 3499, 3524, 3543, 3549, 3557, 3559.
1121 USER VISIBLE CHANGES BETWEEN TAO-1.6.6 and TAO-1.6.7
1122 ====================================================
1124 . Added a fix for bug 2415. Added -DefaultConsumerAdminFilterOp and
1125 -DefaultSupplierAdminFilterOp TAO_CosNotify_Service options for setting
1126 the default filter operators.
1128 . The full TAO distribution compiles with unicode enabled. Work is ongoing
1129 to make the TAO runtime results comparable with the ascii builds.
1131 . Added two new ORB parameters, -ORBIPHopLimit and -ORBIPMulticastLoop. The
1132 first one controls number of hops an IPv4/IPv6 packet can outlive. The
1133 second one is related to MIOP only and it takes boolean value which
1134 directs whether to loop multicast packets to the originating host or not.
1136 . Added the "TAO" and "TAO/orbsvcs" OCI Development Guide Examples under the
1137 directories /DevGuideExamples and /orbsvcs/DevGuideExamples. NOTE this is
1138 an ongoing port of the original version x.5.x examples and some are not yet
1139 100% compatiable with the current version of TAO.
1141 . Split CosLifeCycle library into separate client stub and server
1142 skeleton libraries. Fixes bugzilla issue #2409.
1144 . Split CosTime library into separate client stub, server skeleton,
1145 and server implementation libraries. Fixes bugzilla issue #3433.
1147 . Avoid core dumps when evaluating TCL and ETCL expressions containing
1148 divisions by zero. Partial fix for bugzilla issue #3429.
1150 USER VISIBLE CHANGES BETWEEN TAO-1.6.5 and TAO-1.6.6
1151 ====================================================
1153 . Added a new text based monitor to the Notify_Service to keep track of
1154 consumers that were removed due to a timeout.
1156 . Repaired the -ORBMuxedConnectionMax <limit> option on the resource factory.
1157 This service configurator option defines an upper limit to the number of
1158 connections an orb will open to the same endpoint.
1160 . Repaired a problem that caused the ORB to open too many connections to
1163 . Added a -Timeout option to the Notify_Service to allow the user to apply a
1164 relative round-trip timeout to the ORB. This option requires that the
1165 'corba_messaging' MPC feature be enabled during building of the
1166 Notify_Service, which it is by default.
1168 . Added ZIOP support to TAO. ZIOP adds the ability to compress the
1169 application data on the wire. This is a join effort of Remedy IT, Telefonica,
1170 and IONA. We are working on getting this standardized through the OMG.
1171 Until this has been formally standardized we don't guarantee
1172 interoperability with other ORBs and between different versions of
1173 TAO that support ZIOP, this is done after this has been accepted
1174 by the OMG. If you want to experiment with ZIOP you need to add
1175 TAO_HAS_ZIOP 1 as define to your config.h file. See TAO/tests/ZIOP
1176 for an example how to use it. All policies are not checked on all
1177 places so it can happen that the ORB sends uncompressed data when
1178 it could have compressed it. This is because of limitations in the
1179 policy mechanism in the ORB which will take a few weeks to rework.
1180 Also note that ZIOP doesn't work together with RTCORBA
1182 . Added a -m option to the ImplRepo (ImR, Implementation Repository) Activator,
1183 which specifies the maximum number of environment variables which will be
1184 passed to the child process. The default (and previous behavior) is 512.
1186 USER VISIBLE CHANGES BETWEEN TAO-1.6.4 and TAO-1.6.5
1187 ====================================================
1189 . Updated TAO to comply with the IDL to C++ mapping v1.2. As a result
1190 CORBA::LocalObject is now refcounted by default
1192 . Added a new ORB parameter, -ORBAcceptErrorDelay, that controls the amount
1193 of time to wait before attempting to accept new connections when a
1194 possibly transient error occurs during accepting a new connection.
1196 . Fixed a bug which could lead to an ACE_ASSERT at runtime when a TAO
1197 is used from a thread that is not spawned using ACE
1199 . Added new Monitoring lib that can be used to retrieve values from
1200 the new Monitoring framework in ACE. This is disabled by default
1201 because it is not 100% finished yet, with the next release it
1202 will be enabled by default
1204 . Extended the -ORBLaneListenEndpoints commandline option to support
1205 *, for details see docs/Options.html
1207 . VxWorks 6.x kernel mode with shared library support
1209 USER VISIBLE CHANGES BETWEEN TAO-1.6.3 and TAO-1.6.4
1210 ====================================================
1212 . Service Context Handling has been made pluggable
1214 . Improved CORBA/e support and as result the footprint decreased when
1215 CORBA/e has been enabled
1217 . Added the ability to remove consumer and supplier proxies and consumer and
1218 supplier admins through the Notify Monitor and Control interface.
1220 . Changed Interface Repository's IOR output file from being
1221 world writable to using ACE_DEFAULT_FILE_PERMS.
1223 . Add support for a location forward with a nil object reference.
1225 USER VISIBLE CHANGES BETWEEN TAO-1.6.2 and TAO-1.6.3
1226 ====================================================
1228 . Fixed send side logic (both synchronous and asynchronous) to honor
1229 timeouts. An RTT enabled two-way invocation could earlier hang
1230 indefinately if tcp buffers were flooded.
1232 . Bug fix for cases where the IDL compiler would abort but with an
1235 . Bug fix in IDL compiler's handling of typedef'd constants having
1236 a bitwise integer expression as the value.
1238 . Bug fix that ensures valuetypes and their corresponding supported
1239 interfaces have parallel inheritance hierarchies.
1241 . Fix for possible out-of-order destruction of Unknown_IDL_Type's
1242 static local lock object (bugzilla 3214).
1244 . Added list() iterator functionality for the Naming Service when
1245 using the -u persistence option.
1247 . Various bug fixes to the IFR service and compiler.
1249 . New option (-T) to IFR compiler that permits duplicate typedefs with
1250 warning. Although not encouraged, this allows IDL that used to pass
1251 through the IFR compiler to still pass through rather than having to
1254 . Fix crashing of _validate_connection on an invalid object reference
1256 . Add support for TAO on VxWorks 5.5.1
1258 . _get_implementation has been removed from CORBA::Object, it was
1259 deprecated in CORBA 2.2
1261 . Improved CORBA/e support
1263 . Fixed SSLIOP memory leaks
1265 USER VISIBLE CHANGES BETWEEN TAO-1.6.1 and TAO-1.6.2
1266 ====================================================
1268 . Added support for handling Location Forward exceptions caught when using
1269 AMI with DSI. These exceptions may also be raised from within DSI servants
1272 . Added -RTORBDynamicThreadRunTime which controls the lifetime of dynamic
1275 . Changed the PI code so that send_request is also called at the moment
1276 we don't have a transport (bugzilla 2133)
1278 . Fixed memory leak that occured for each thread that was making CORBA
1281 . Updated several tests to work correctly on VxWorks
1283 . Removed support for pluggable messaging. As a result the code in the
1284 core of TAO is much cleaner and we are about 5 to 10% faster
1286 . Improved CORBA/e support
1288 . Added gperf's exit code to the error message output if it exits
1289 unsuccessfully when spawned by the IDL compiler to generate an
1290 interface's operation table
1292 . Fixed bug in Interface Repository's handling of base valuetypes
1293 and base components (Bugzilla 3155)
1295 . Fixed code generation bug that occurs when there is both a C++
1296 keyword clash in the IDL and AMI 'implied IDL' code generation
1298 . Fixed IDL compiler bug wherein some cases of illegal use of a
1299 forward declared struct or union wasn't caught
1301 . Improved support for VxWorks 6.4 kernel and rtp mode
1303 USER VISIBLE CHANGES BETWEEN TAO-1.6 and TAO-1.6.1
1304 ====================================================
1306 . Made TAO more compliant to CORBA/e micro
1308 . Fixed invalid code generation by the IDL compiler when the options -Sa -St
1309 and -GA are combined
1311 USER VISIBLE CHANGES BETWEEN TAO-1.5.10 and TAO-1.6
1312 =====================================================
1314 . Added a new interface that allows monitoring of activities within the
1315 Notification Service. Completely configurable through the Service
1316 Configurator, the monitoring capabilities are only in effect when chosen
1317 by the user. When the monitoring capabilities are enabled, an outside
1318 user can connect to a service that allows querying statistics gathered by
1319 the Notification Service.
1321 . Moved the BufferingConstraintPolicy to the Messaging lib
1323 . Made it possible to disable not needed IOR parsers to reduce footprint
1325 . Reworked several files to get a smaller footprint with CORBA/e and
1326 Minimum CORBA. This could lead to a reduction of more then 20% then
1327 with previous releases
1329 . Removed the Domain library, it was not used at all and only
1330 contained generated files without implementation
1332 USER VISIBLE CHANGES BETWEEN TAO-1.5.9 and TAO-1.5.10
1333 =====================================================
1335 . Added support for forward declared IDL structs and unions to the
1336 Interface Repository loader
1338 . A new securty option is available using the Access_Decision interface
1339 defined by the CORBA Security Level 2 specification. This enables the
1340 implementation of servers using mixed security levels, allowing some
1341 objects to grant unrestricted access while others require secure
1342 connections. See orbsvcs/tests/Security/mixed_security_test for
1343 details on using this feature.
1345 . Removed GIOP_Messaging_Lite support for all protocols
1347 . Fixed a hanging issue in persistent Notify Service during disconnection.
1349 . Added IPv6 support to DIOP
1351 . Added -Gos option to the IDL compiler to generate ostream
1352 operators for IDL declarations
1354 USER VISIBLE CHANGES BETWEEN TAO-1.5.8 and TAO-1.5.9
1355 ====================================================
1357 . When using AMI collocated in case of exceptions they are deliverd
1358 to the reply handler instead of passed back to the caller
1360 . Added support for IPv6 multicast addresses when federating RTEvent
1363 . Fixed a bug in the IDL compiler's handling of octet constants where
1364 the rhs consists of integer literals and infix operators (Bugzilla 2944).
1366 . TAO_IDL enhancements for built in sequence support in TAO DDS.
1368 . Provide support for TAO DDS zero-copy read native types.
1370 . TAO_IDL fix for lock-up and incorrect error message generation for
1371 missing definitions within local modules. This fix also stops the
1372 erronious look-up in a parent scoped module (with the same name as
1373 a locally scoped module) that should have been hidden by the local
1376 . The TAO_IORManip library now has a filter class that allows users to
1377 create new object references based on existing multi-profile object
1378 references by filtering out profiles using user defined criteria. The
1379 use of -ORBUseSharedProfile 0 is required for this to function.
1381 . A problem in TAO_Profile::create_tagged_profile was fixed. This problem
1382 triggered only when MIOP in multi-threaded application was used.
1384 . Added IPv6 support in MIOP so that IPv6 multicast addresses can be used in
1385 addition to those IPv4 class D addresses. DSCP support is implemented in
1386 MIOP as well. However, since MIOP only allows one way communication then it
1387 makes sense to use DSCP on the client side only.
1389 USER VISIBLE CHANGES BETWEEN TAO-1.5.7 and TAO-1.5.8
1390 ====================================================
1392 . Fixed bug in IDL compiler related to abstract interfaces
1394 . Fixed several issues in the AMI support
1396 . Added new -ORBAMICollocation 0 which disables AMI collocated calls
1398 . Improved a lot of test scripts to work with a cross host test
1399 environment where client and server are run on different hosts.
1400 This is used for automated testing with VxWorks
1402 . Fixed handled of a forward request when doing a locate
1405 . Added an option, -a, to the Event_Service to use the thread-per-consumer
1406 dispatching strategy instead of the default dispatching strategy.
1408 . Improved wide character compilation support.
1410 . Fixed IDL compiler to run on both OpenVMS Alpha and OpenVMS IA64.
1412 . Fixed memory leaks in the ImpleRepo_Service.
1414 . Fixed a bug in the IDL compiler relating to include paths.
1416 . Fixed Trader Service issues related to CORBA::Long and CORBA::ULong.
1418 USER VISIBLE CHANGES BETWEEN TAO-1.5.6 and TAO-1.5.7
1419 ====================================================
1421 . Removed ACE_THROW_RETURN.
1423 . Fixed a memory crash problem when using ETCL IN operator with
1424 Notify Service filter.
1426 . Remove exception specifications from ORB mediated operations (C++
1427 mapping requirement)
1429 . New diffserv library to specify diffserv priorities
1430 independent of RTCORBA
1432 . Addressed Coverity errors in core TAO libraries, TAO_IDL compiler,
1433 stubs and skeletons generated by TAO_IDL and the TAO Notification
1436 . Extended current DynamicInterface to allow DII+AMI+DSI+AMH.
1437 (Thanks to OMC <www.omesc.com> for the sponsorship.)
1439 . Fixed bug in IDL compiler code generation for a comma-separated list of
1442 . TAO no longer sets the unexpected exception handler.
1444 USER VISIBLE CHANGES BETWEEN TAO-1.5.5 and TAO-1.5.6
1445 ====================================================
1447 . Removed all exception environment macros except ACE_THROW_RETURN
1450 USER VISIBLE CHANGES BETWEEN TAO-1.5.4 and TAO-1.5.5
1451 ====================================================
1453 . Added an IDL compiler option to generate an explicit instantiation
1454 and export of template base classes generated for IDL sequences,
1455 sometimes necessary as a workaround for a Visual Studio compiler bug
1458 . Beefed up error checking in the IDL compiler when processing
1459 #pragma version directives.
1461 . Modified IDL compiler's handling of a syntax error to eliminate
1462 the chance of a crash (Bugzilla 2688).
1464 . Fixed a bug in code generation for a valuetype when it inherits
1465 an anonymous sequence member from a valuetype in another IDL file.
1467 . Extended tests in tests/IDL_Test to cover generated code for
1470 . Modified tao_idl to emit code to set the exception data in the
1471 Messaging::ExceptionHolder in the AMI _excep operation. This has the
1472 effect of allowing user defined exceptions to be recognized when
1473 raising an exception without collocation. This fixes Bug 2350.
1475 . Added hooks to enable custom Object to IOR conversion or allowing local
1476 objects (such as Smart Proxies) to be converted to an IOR string.
1478 . Removed warning issued when using corbaloc with a default object key.
1480 . Added implementation of Dynamic Any methods insert_*_seq() and
1481 get_*_seq() (spec-defined for sequences of IDL basic types),
1482 as well as implementation of insert and get methods for abstract
1485 . Added support for CORBA/e compact
1487 . Added support for CORBA/e micro
1489 . Fixed issues relating to the CosTrading Server library. The constraint
1490 language lexer now allow negative floating point values, 64-bit signed and
1491 unsigned integers (which can currently be represented as octal or decimal).
1492 Also, fixed a bug where negative integers were being stored and compared as
1493 unsigned integers which resulted in -3 > 0 evaluating to true.
1495 . Added Compression module that delivers the infrastructure
1496 classes with which data can be compressed. This can be used
1497 by regular applications but then also by the ORB in the future.
1499 . Removed support for -Ge 0 and -Ge 1 from the IDL compiler. In practice
1500 this means that the IDL compiler doesn't generate any environment macros
1503 . Fixed a problem where TAO mistakenly considered ALL messages
1504 with zero-length payload to be errors and was thus not properly
1505 parsing and handling the GIOP CloseConnection message. This is
1506 tested via Bug_2702_Regression.
1508 . Added an optimization to servant activation to eliminate calls to
1509 check_bounds() on the object key sequence. This has been observed
1510 to yield a 30% decrease in activation time for debug builds on VC71
1513 . Merged in changes from OCI's distribution which originate from
1514 OCI request tickets [RT 8449] and [RT 8881]. In their totality,
1515 these changes add a feature whereby the notification service
1516 implementation can utilize a separate ORB for dispatching events to
1519 . Contributed the Transport::Current support - a TAO-specific
1520 feature providing IDL interfaces which enables users to obtain
1521 information about the Transports used to send or receive a
1522 message. The basic intent is to provide (typically) a
1523 read-only interface to obtaining data like the number of bytes
1524 transferred or the number of messages sent and received.
1525 Since specific Transports may have very different
1526 characteristics, a simple generic implementation for
1527 Transport::Current is insufficient. This implementation also
1528 provides support for specific Transport implementations. See
1529 the TC_IIOP implementation, which is an IIOP-specific
1530 Transport::Current. It extends the generic interface with
1531 operations providing information about IIOP endpoints, like
1532 host and port. By default, TAO builds with support for this feature.
1533 Define "transport_current=0" in your default.features file to disable
1534 it. For more details of how the feature is intended
1535 to be used, see docs/transport_current/index.html
1537 USER VISIBLE CHANGES BETWEEN TAO-1.5.3 and TAO-1.5.4
1538 ====================================================
1540 . Added support for ACE_Dev_Poll_Reactor to Advanced_Resource_Factory.
1542 . Improved tao_idl performance, particularly over networked
1545 . Added new option for the RTEC, -ECDispatchingThreadsFlags, that
1546 allows the user to pass in a list of thread creation flags and
1547 priority for dispatching threads. These can be used for either the
1548 MT dispatching strategy or the TPC dispatching strategy. See
1549 docs/ec_options.html for usage information.
1551 Also added -ECDebug option to enable debugging output from the RTEC.
1552 Only the option and variable was added, but no messages. Therefore,
1553 at the moment, this does not generate much output.
1555 . Resolved Bugzilla #2651 to eliminate incompatibility with the new
1556 mechanism, allowing per-ORB configurations.
1558 . Fixed Bugzilla #2686, which involved correctly managing memory during
1559 exceptional situations. Throwing an exception during the creation of the
1560 Root POA would cause a leak of a TAO_Adapter and POA manager related
1563 . Fixed Bugzilla #2699, by uninlining generated code for the
1564 TIE template classes. Inlining of virtual functions in this
1565 code was causing problems with RTTI on some compilers. As a side
1566 result, the idl compiler doesn't generate a S_T.inl file anymore.
1568 . Fixed a bug where calling _set_policy_overrides() on a collocated servant
1569 would return an unusable object reference.
1571 . Addressed a number of Coverity errors (CHECKED_RETURN, DEADCODE, LOCK,
1572 USE_AFTER_FREE, RESOURCE_LEAK, FORWARD_NULL). In particular, missing
1573 return value checks and unreachable code in the ACE CDR stream
1574 implementation were addressed. Memory and resource management in the ACE
1575 Configuration classes was corrected. A potential deadlock upon error was
1576 fixed in ACE_OS::rw_unlock(). Missing return value checks were addressed
1577 in ACE_OS::open() on Windows and ACE_Thread_Manager::wait(). A potential
1578 dereference of a null pointer in ACE_OS::scandir_emulation() was
1579 corrected. Lastly, the ACE_UUID::lock() accessor interface and
1580 implementation was cleaned up so that it would not return a lock whose
1581 memory had been freed.
1583 USER VISIBLE CHANGES BETWEEN TAO-1.5.2 and TAO-1.5.3
1584 ====================================================
1586 . Added new options, -CECConsumerOperationTimeout and
1587 -CECSupplierOperationTimeout, to the CosEvent service. See Bugzilla #2594
1588 and $TAO_ROOT/docs/cec_options.html for details. The purpose of these
1589 options is to use the relative round-trip timeout feature from the TAO
1590 Messaging library to detect clients that are "hung" in push() or pull()
1591 operations but would otherwise not be detetcted as "bad" by the
1592 -CECReactive*Control options (since they have a thread available in
1595 . The Tk/Fl/Qt/Xt resource factories have been moved to subdirectories
1596 to make maintenance easier. If you are using these you have to update
1599 . Fixed a compatibility problem between TAO and ORBs using Valuetype ID
1600 indirection, such as JacORB. This problem was inadvertently introduced
1603 . Oneway requests when using SYNC_NONE, SYNC_DELAYED_BUFFERING, or
1604 SYNC_EAGER_BUFFERING will be queued until the connection is completed.
1605 Connection completion occurs when one of the following occurs:
1606 a) A one-way request that does NOT use one of the sync-scopes mentioned
1607 above is sent via the same transport
1608 b) A two-way request is sent via the same transport
1609 c) orb->run() is called
1610 Applications that do not currently do one of the above will no longer
1611 establish a connection and therefore no data will be sent.
1613 . Fixed a problem with location forward objects being raised by colocal
1614 ServerInterceptors. This problem did not occure interacting with remote
1615 servers. Now the raised object-reference will take effect on the object
1616 reference being held by client.
1618 . Fixed a problem with properly shutting down socket connections by
1619 explicitly calling release_os_resources from the destructor of protocol
1620 specific connection handlers. Maintainers of third-party (non-DOC)
1621 pluggable protocols must verify they are releasing any resources they
1622 acquired. The base Connection_Handler destructor can't do it for them.
1624 . Added COIOP as pluggable protocol. This stands for Collocated Only IOP
1625 and it only allows collocated calls. Can be used for embedded systems that
1626 do use corba but don't make any remote calls.
1628 . Notication service works with Microsoft Visual C++ 8.
1630 . Fixed Bugzilla #2582, related to IDL compiler generation of arg traits
1631 template specialization for typedefs.
1633 . Fixed Bugzilla #2583, a bug in the recursive check for local type
1634 containment that controls CDR operator generation in the IDL compiler.
1636 . Addressed Bugzilla #2603, which called for a -oS option for the IDL
1637 compiler to set the output directory for skeleton files.
1639 . Fixed Bugzilla #2634, which reported a bug in code generation for some
1640 escaped IDL identifiers.
1642 . Eliminated the dependency of the TAO Interface Repository IDL3 test on
1645 . Added output message to the IDL compiler, containing the name of the IDL
1646 file being processed.
1648 . Fixed IDL compiler to recognize CORBA::AbstractBase as a pseudo object.
1650 . Fixed a regression on Bugzilla #2074 caused by a reference
1651 counting problem on the Connection Handler. This change
1652 affects all pluggable transport protocol implementations.
1653 Maintainers of third-party (non-DOC) pluggable protocols will
1654 need to make similar changes to their *_Connection_Handler
1657 . Fixed parsing of explicitly wildcarded IIOP endpoints.
1658 These might be iiop://[::]:, iiop://[]: or iiop://0.0.0.0:
1659 The first two examples are useful only when IPv6 is supported.
1660 The last example forces only IPv4 endpoints even when IPv6 is
1661 supported. Use iiop://: to get both IPv4 and IPv6 endpoints.
1663 . Fixed Bugzilla #2651 to properly handle order of destruction
1664 of Codeset Manager instances owned by the Default Resource
1665 Factory. The ORB_Core is now responsible for managing the
1666 lifecycle of the Codeset Manager instance instead of the
1667 Resource Factory. The Resource Factory now gives up ownership
1668 of the objects it creates.
1670 . Fixed Bugzilla #2545 so collocated DII oneway requests do not
1671 crash in get_in_arg().
1673 . Added a new "-b" option to the IDL compiler to control whether
1674 or not arguments on oneway invocations are "cloneable". If the
1675 arguments are cloneable, and Custom Servant Dispatching (CSD)
1676 strategy is in use, the arguments for collocated oneways can be
1677 cloned during the copy of the TAO_Server_Request, which gives a
1678 performance improvement over the old method of copying the
1679 arguments using marshaling.
1681 . Fixed Bugzilla #2604 so the Implementation Repository can
1682 properly keep track of servers it launched in PER_CLIENT
1685 . Fixed build warnings from some 64-bit compilers in code in which
1686 unsigned long and ACE_CDR::ULong were mixed.
1688 . Added various performance enhancements. Many thread mutex/integer
1689 reference counts were replaced with ACE_Atomic_Op<unsigned long>. Some
1690 buffers are allocated on the stack instead of the heap where possible.
1692 USER VISIBLE CHANGES BETWEEN TAO-1.5.1 and TAO-1.5.2
1693 ====================================================
1695 . To be able to support CORBA/e the pidl files within the core libs are
1696 now compiled during the building of the core libs. This means that gperf
1697 and TAO_IDL must be build before you can build the core libs!
1699 . Changed NT_Naming_Service project to require new MPC feature variable
1700 "winnt". Avoids building and installing this on non-Windows systems.
1701 Fixes bugzilla bug #2412.
1703 . Changed NT_Notify_Service project to require new MPC feature variable
1704 "winnt". Avoids building and installing this on non-Windows systems.
1705 Fixes bugzilla bug #2411.
1707 . Changed Telecom Log Service plug-in Strategy Interface.
1709 Added get_record_attribute(), set_record_attribute(), and
1710 set_records_attribute(); removed remove(), retrieve(), and update().
1711 This will allow plug-in Strategies to handle these high-level
1712 operations more efficiently.
1714 Added get_gauge() and reset_gauge(), to maintain "gauge" used for
1715 capacity threshold alarms when log channel's LogFullActionType is
1716 DsLogAdmin::wrap. This resolves bugzilla 2420.
1718 . Allow different ORB instances to use a different sets of Service
1719 Objects in their own Service Repository instances. This resolves
1722 . Integrate new sequence implementation made by Carlos O'Ryan. This
1723 also includes a rework of the TAO_String_Managers and CORBA::(W)String
1726 . Store Value Factories per orb instead of per process and made the
1727 storage thread safe.
1729 . Add on demand write functionality that writes out GIOP fragments to
1730 reduce the memory usage
1732 . The TIE files (_S.*) are not generated by default anymore by the
1733 IDL compiler. If you need these for your project, add -GT to the
1736 . Added optional support for implicitly typed values. When the Valuetype
1737 library is compiled with TAO_HAS_OPTIMIZED_VALUETYPE_MARSHALING defined
1738 TAO will skip the marshaling of the value's type when it is allowed to
1739 do so. It is allowed by the spec to do so when the value's actual type
1740 matches the formal type for the parameter through which the value is
1741 passed. As older versions of TAO did not correctly unmarshal implicitly
1742 typed values, the default behavior is for TAO to always marshal the
1745 . Added support for CORBA specified truncatable valuetypes.
1747 . Added support for CORBA specified POAManagerFactory.
1749 . Added TAO-proprietary EndpointPolicy. This is used as a filter to limit
1750 which of an ORBs endpoints are inserted into an object reference. The
1751 endpoint policy is applied to POAManagers created via the POAManagerFactory
1752 and affect all POAs associated with that POAManager.
1754 . Added a client-side connection optimization, the Parallel Connect Strategy
1755 This strategy makes the client evaluate all endpoints in profile at the same
1756 time when trying to connect to the server. For this to work the server must
1757 be run with -ORBUseSharedProfile 1 and the client must be run with
1758 -ORBUseParallelConnect 1.
1760 . Fixed several bugs related to asynchronous connection establishment. These
1761 are represented by the AMI_Buffering tests and bug 2417's regression test.
1763 . Refactored PICurrent, removing PICurrent_Copy_Callback classes, subsuming
1764 this functionality inside PICurrent_Impl where it can be controlled
1765 correctly. The copying of PICurrent objects still performs lazy/deferred
1766 copying where possible, only taking a real physical copy when modifications
1767 are attempted. Interest in PICurrent objects where lazy copies have been
1768 taken can now be correctly reversed when the lazy copy is destroyed fixing
1769 a range of call-back bugs that were performed on already destroyed objects.
1770 (For detail see bugzilla 2552.)
1772 . Updated/Enhanced TAO/utils/nslist utilities nslist,nsadd and nsdel.
1773 These tools now allow for full ID.Kind processing (the separating character
1774 is user controlled, defaulting to .) and sub-context path processing (the
1775 separating character is also user controlled, defaulting to /).
1776 nsadd allows for (re)binding naming contexts in addition to final objects
1777 nsdel allows for destroying naming contexts when unbinding.
1778 nslist output has been prittyfide with user controlled character drawing
1779 of the naming context tree or sub-tree of full or limited depth.
1780 For full usage details execute these utilities with a ? parameter.
1782 . Add the ability to use the sendfile API to send out data
1786 USER VISIBLE CHANGES BETWEEN TAO-1.5 and TAO-1.5.1
1787 ====================================================
1789 . Fixed LOCATION_FORWARD_PERM handling. See bugzilla #1777 for full details.
1791 . Fixed bug in detecting name clashes between existing identifiers and
1792 extra code generated for AMI and AMH.
1794 . Fixed bug in connection closure. See bugzilla # 2391
1796 . Added support for the --enable-fl-reactor configure option to the
1797 autoconf build infrastructure to build the TAO_FlResource library.
1799 . Added support for the --enable-qt-reactor configure option to the
1800 autoconf build infrastructure to build the TAO_QtResource library.
1802 . Added support for the --enable-xt-reactor configure option to the
1803 autoconf build infrastructure to build the TAO_XtResource library.
1805 . Fixed a race condition involving two threads active in the same
1806 connection handler at the same time. See bug# 1647 for details.
1808 . Changed #include "..." preprocessor directives to use fully
1809 qualified (from $(ACE_ROOT), $(TAO_ROOT), or $(TAO_ROOT)/orbsvcs)
1810 paths. We had been depending on non-standard behavior where files
1811 #included with "..." are first looked for in the current directory
1812 and then in the same directories used by #include <...>. See bug
1815 USER VISIBLE CHANGES BETWEEN TAO-1.4.10 and TAO-1.5.0
1816 ====================================================
1818 . Fixed Transport to handle incoming fragmented messages propperly, abstract
1819 interfaces TAO_Pluggable_Messaging and TAO_Transport have been
1820 modified. Custom transport/messaging implementations require
1821 interface modification.
1823 . Fix collocation optimisation when a location forward is received directing a
1824 client to a collocated object.
1826 . Prevent an OBJ_ADAPTER exception when using an object reference containing
1827 an ObjectID that corresponds to a collocated IORTable entry.
1829 . Reverted solution that allowed POA-level control over access to
1830 security-enabled objects due to conflicts with the specification,
1831 i.e. the Security::SecQoP* are not server-side policies.
1833 . When suppressing any and typecodes during IDL compilation this will not
1834 trigger compile errors due to missing any insert operations
1836 . Bug fix in IFR when creating typecodes for nested structs and unions.
1838 . Added support for the --enable-tk-reactor configure option to the
1839 autoconf build infrastructure to build the TAO_TkResource library.
1844 . Fix problem with missing includes in the skeleton files for imported arg
1847 USER VISIBLE CHANGES BETWEEN TAO-1.4.9 and TAO-1.4.10
1848 ====================================================
1850 . Fixed a bug, which allowed security unaware clients to make
1851 invocations on secure objects, when the ORB was configured with
1852 support for Security::SecQoPNoProtection.
1854 . Fixed Bugzilla #2145, which was preventing the building of
1855 the IDL compiler on HPUX.
1857 . Added boxed valuetype support to the Interface Repository
1860 . Fixed several bugs in the PICurrent implementation
1862 . Fixed GOA factory name
1864 . Fixed -ORBConnectionHandlerCleanup arguments to accept 0 and 1.
1866 . Improved Portable Interceptor implementation.
1868 . Autoconfig improvements.
1870 . Improved Real-time CORBA support for dynamic threads.
1875 . Some bug fixes. See bug #2375 and #2390.
1877 USER VISIBLE CHANGES BETWEEN TAO-1.4.8 and TAO-1.4.9
1878 ====================================================
1880 . Added new endpoint selector implementation - Optimized
1881 Connection Endpoint Selector. A member of the tao/Strategies library,
1882 use svc.conf file to load the OC_Endpoint_Factory object. See
1883 tests/AlternateIIOP/svc.conf for an example.
1885 . Continued splitting ORB Services into stub, skeleton, and
1886 implementation libraries. Changes to the Concurrency Service,
1887 Property Service, and RTEventLog Admin Service (TAO's RTEvent
1888 varient of the OMG Telecom Log Service) have been committed.
1890 . Added a new ORB run-time option "-ORBUseLocalMemoryPool [0|1]" which
1891 controls an individual application's use of TAO's Local Memory Pool.
1892 TAO can use a local memory pool to satisfy some of its needs for
1893 heap storage, as it is often more efficient than using the
1894 platform's default memory allocator. The pool will always grow as
1895 large as necessary to satisfy memory allocations, but it will never
1896 shrink. This means that sometimes a process can retain memory that
1897 it no longer needs. If the default allocator is used then TAO gives
1898 memory back as soon as it is not needed.
1899 The UseLocalMemoryPool option selects between using the local memory
1900 pool or using the default allocator, where 0 means don't use the pool,
1901 1 means use the pool. The default is still controlled by the original
1902 compile-time option controlled by the #define TAO_USE_LOCAL_MEMORY_POOL
1903 which defaults to 1 if not specified.
1905 . Add a property -ORBKeepalive to allow a user to specify that
1906 SO_KEEPALIVE is set on IIOP connections. See docs/Options.html
1909 . Add support for RTCORBA::TCPPrototocolProperties::keep_alive, when
1910 RTCORBA is used, and the application is using a Server or Client
1913 . Refined the Telecom Log Service Strategy Interface. Added methods
1914 to fetch/store capacity alarm thresholds, log QoS, and "week mask".
1915 Rework locking to avoid race conditions and to improve performance.
1920 . Fixed bug in computation of repository ids for predefined types.
1922 . Fixed bug in the handling of TAO_IDL_INCLUDE_DIR.
1924 Interface Repository:
1925 ---------------------
1927 . Fixed bug in the lookup of a valuetype member's type using its
1930 . Fixed bug in IFR loader in checking for pre-existence before
1931 creating an entry corresponding to an IDL typedef.
1933 . Fixed bug in lookup when checking for a local name clash.
1935 . Fixed bug in the describe_interface() operation when the IDL
1936 interface being described has multiple parents.
1938 USER VISIBLE CHANGES BETWEEN TAO-1.4.7 and TAO-1.4.8
1939 ====================================================
1941 . Fixed bugs in code generation for interfaces that inherit from both
1942 concrete and abstract interfaces.
1944 . Subset Anys and TypeCodes to a separate library. If you use Any/TypeCode
1945 or one of the core TAO libs uses it you should link the AnyTypeCode
1946 library with your application
1948 . PICurrent is moved to the PI library
1950 . POACurrent has been moved back from PI_Server to PortableServer
1952 . Added IPv6 support for IIOP
1954 . When Any and TypeCode generation is suppressed when compiling IDL
1955 no typecodes are generated anymore for user exceptions, they are not
1956 needed for the operation of the ORB
1958 . When making AMI invocation and the send blocks we buffer the message
1959 and send it out when the transport is available again
1961 . Emulated C++ exceptions are not maintained anymore. We are keeping
1962 the macros in the TAO code until x.5.1 is out, if nobody sponsors
1963 maintenance at that moment the macros will be removed from TAO.
1964 See also http://deuce.doc.wustl.edu/bugzilla/show_bug.cgi?id=2256
1966 . Support the latest AMI mapping, the old mapping will be kept working
1967 until 1.5.1 has been released. If you need the old mapping add
1968 the define TAO_HAS_DEPRECATED_EXCEPTION_HOLDER to your config.h
1969 file before you build TAO and the TAO_IDL compiler
1971 . Added CodecFactory::create_codec_with_codesets to create a codec with
1972 a specific codeset. See OMG issue 6050 for the background.
1974 . PortableInterceptor::IORInterceptor has been splitted in IORInterceptor
1975 and IORInterceptor_3_0. If you use IORInterceptors read the ChangeLog for
1976 the details, maybe you have to update your code!
1978 . Added the new Custom Servant Dispatching (CSD) feature to provide user
1979 applications with the ability to implement and "plug-in" custom strategies
1980 to handle the dispatching of requests to servants. This new feature is not
1981 currently tested for VxWorks. See TAO release notes for more information.
1983 . Added support for an TAO "versioned" namespace. When enabled, TAO
1984 library sources will be placed within a namespace of the user's
1985 choice or a namespace of the form TAO_1_4_7 by default, where
1986 "1_4_7" is the TAO major, minor and beta versions. The default may
1987 be overridden by defining the TAO_VERSIONED_NAMESPACE_NAME
1988 preprocessor symbol. Enable overall versioned namespace support by
1989 adding "versioned_namespace=1" to your MPC default.features file.
1991 . Changed generated signatures of some valuetype member
1992 accessor/mutator pairs to be consistent with IN
1993 parameter semantics.
1995 . Added spec-required generation of member-initializing
1996 constructor for valuetypes. See C++ mapping (03-06-03)
1997 section 1.17.2. Closes Bugzilla #2270.
1999 . Added default include paths $TAO_ROOT, $TAO_ROOT/tao,
2000 $TAO_ROOT/orbsvcs, and $CIAO_ROOT/ciao to IDL compiler
2001 execution, eliminating the need to add them explicitly
2002 to the command line.
2004 . Added immediate exits to IDL compiler when some name clash
2005 errors are encountered, avoiding a crash if parsing is
2006 continued. Closes Bugzilla #2281.
2008 . Changed the behavior of the _default() method (generated
2009 for IDL unions that have an explicit or implicit default
2010 case label) to clean up memory used by the freed member,
2013 . Fixed bug in IDL compiler when handling a native exception
2014 in an operation declared in Messaging::ExceptionHolder.
2016 . Although not presently supported by CIAO, added error
2017 checking to the IDL compiler's parsing of IDL home
2018 primary keys, which constrain the basic valuetype
2019 syntax in several ways.
2021 . Fixed order of generated base class stub constructor calls
2022 when the IDL interface has both concrete and abstract parents.
2024 . Fixed a bug in the handling of forward declared interfaces
2025 that have both concrete and abstract parents.
2027 . Fixed the command line parsing to preserve the literal
2028 quotes if they are used in an include path that has a space.
2029 Closes Bugzilla #2219.
2031 . Many changes related to refactoring of Anys and Typecodes
2032 into a separate library (POC is Johnny Willemsen
2033 <jwillemsen@remedy.nl>).
2035 . Merging of many Notification Service changes/fixes from OCITAO to
2036 the DOC version. These generally addressed stability issues such as
2037 memory leaks, thread leaks, etc.
2039 . Introduction of the versioned namespaces changed the name of the
2040 factory function used for dynamically loading the Notification
2041 Service persistence mechanisms. See the service configurator file
2042 in orbsvcs/tests/Notify/XML_Persistence for an example.
2044 USER VISIBLE CHANGES BETWEEN TAO-1.4.6 and TAO-1.4.7
2045 ====================================================
2047 . The Telecom Logging Service now supports dynamically loaded Strategies
2048 which can be used to implement a persistent log record store. If none
2049 are specified, a default in-memory hash table implementation is used.
2051 . The CodecFactory is moved to its own library. If you use this in your
2052 application include tao/CodecFactory/CodecFactory.h and link the
2053 TAO_CodecFactory with your app
2055 . The ORBInitializer registry, PolicyFactory registry and ORBInitInfo
2056 are moved to the new PI library. If you use these clases include
2057 tao/PI/PI.h in your application code and link the new TAO_PI
2058 library with your application.
2060 . All server side PortableInterceptor support is moved to the new
2061 TAO_PI_Server library. If you use this, include tao/PI_Server/PI_Server.h
2062 in your application code and link the new TAO_PI_Server lib
2064 . A new set of examples and support code that show how to set up a
2065 multicast-based federation of Notification Services is now available
2066 in $TAO_ROOT/orbsvcs/examples/Notify/Federation.
2068 . Hard coded loading of services with Service Configurator now uses the
2069 ACE_DYNAMIC_SERVICE_DIRECTIVE macro which also works when the xml
2070 version of service config is enabled.
2072 . The Codeset negotiation support is in its own library. The hooks are
2073 still present in the ORB Core to dynamically load the codeset support
2074 if needed. This behavior is overridden by the new ORB_init option
2075 -ORBNegotiateCodesets 0.
2077 . The Boxed Value Type as specified by the OMG is now accepted by the
2080 . TAO clients now parse the OMG specified TAG_ALTERNATE_IIOP_ADDRESS
2081 profile component. To generate IORs using that component, add the
2082 new ORB_init option, -ORBUseSharedProfiles 1.
2084 . Refactored TAO's codeset negotiation feature to be optionally loadable.
2085 The implementation is now in a separate library, TAO_Codeset. Applications
2086 not wishing to use codeset support may pass -ORBNegotiateCodesets 0 to
2087 ORB_init() to avoid loading the library. When building dynamic applications
2088 codeset negotiation is available by default. For static applications, the
2089 default is to *not* include codeset negotiation. Staticly linked apps
2090 needing codeset negotiation support must do two things:
2091 - Define the new MPC feature "negotiate_codesets=1" in default.features
2092 and regenerate makefiles
2093 - Add "#include <tao/Codeset/Codeset.h>" somewhere in their application
2094 source. Placing this in the source file that includes calling ORB_init()
2095 is probably the best place.
2097 . Added CORBA::Object::_repository_id() and CORBA::Object::_get_orb()
2098 as described by the spec.
2100 USER VISIBLE CHANGES BETWEEN TAO-1.4.5 and TAO-1.4.6
2101 ====================================================
2103 . The RTOldEvent library has been removed. The RTEvent library has been
2104 split in a stub/skel and serv library.
2106 . Support for bi-directional communication over SSLIOP.
2108 . Servants are now always reference counted, in accordance with changes
2109 to the CORBA specification.
2111 . Added a -x option to catior that works like -f except that it reads
2112 the IOR from standard input rather than from a file. This makes catior
2113 much more like the unix "cat" command, and enables it to be used in a
2116 . Changed the precedence rules for the -ORBListenEndpoints (aka
2117 -ORBEndpoint) so that the host identifier (either hostname or IP
2118 address) that appears in IIOP profiles is determined thus:
2120 1. value from hostname_in_ior (if specified);
2121 2. setting of -ORBDottedDecimalAddresses option;
2122 3. value for hostname in -ORBListenEndpoints specification;
2123 4. whatever TAO magically comes up with based on system
2126 A new test (TAO/tests/IOR_Endpoint_Hostnames) verifies the
2127 operation of this feature.
2129 . Changed the way that Bidirectional endpoint processing happens when
2130 -ORBDottedDecimalAddresses 1 is in effect. The previous behavior
2131 always used the setting of the receiver, but that caused problems when
2132 the sender and receiver were not using the same dotted decimal
2133 addresses setting. Bidirectional endpoint processing now uses
2134 whatever the sender provides as the hostname since that's also what
2135 will be in that sender's IORs.
2137 . Added a configuration property -ORBIMREndpointsInIOR [0|1] that
2138 controls whether ImR endpoints are written into persistent IORs. See
2139 $(TAO_ROOT)/docs/Options.html and bugzilla #2123 for usage.
2141 . Increment the refcount on the servant in the id_to_servant and
2142 reference_to_servant methods of the POA.
2144 . Improved g++ 4.0 support. A number of RTTI related problems have been
2145 fixed, in addition to removal of duplicate internal ORB related
2146 singleton instances.
2148 . Fixed assertion that occured in some thru-POA collocated calls.
2150 . Fixed CORBA::UnknownUserException Any insertion problem.
2152 . Fixed TypeCode equivalence failure when comparing aliased and
2153 unaliased TypeCodes of the same type.
2155 USER VISIBLE CHANGES BETWEEN TAO-1.4.4 and TAO-1.4.5
2156 ====================================================
2158 . The POA is rewritten so that it uses strategies for its implementation.
2160 . The ImR handling is moved to the new ImR_Client library. If your server
2161 needs to register itself to the ImR you have to link the new ImR_Client
2164 . The MIOP part of the POA is moved to the GOA. See the latest version of the
2165 MIOP specification. You have to link now with the PortableGroup
2166 library and retrieve a GOA instead of the RootPOA.
2168 . Implemented several missing parts of POA functionality as described
2169 by the latest corba specification. Missing functionality, incorrect
2170 exceptions, incorrect minor codes and much more.
2172 . Splitted the huge PortableServer.pidl file in several smaller files
2173 and regenerated all the generated files in the repository.
2175 . Move TAO_ORB_Manager from PortableServer to Utils library, this is a
2178 . The POA has been split in Root_POA and Regular_POA, on this we will more
2179 in the future so that the Root_POA just pulls in the minimal set of things
2182 . The RootPOA now has "RootPOA" as its adapter name, previously it had
2183 an empty string. This is required by the CORBA specification, you can
2184 overrule this by defining TAO_DEFAULT_ROOTPOA_NAME if you want to
2185 reduce the "RootPOA" string to be shorter, e.g., "".
2187 . Added support for GNU G++ 4.0. Additional details in ACE `NEWS' file.
2189 . Explicit template support has been dropped for TAO and it is not possible
2192 . CORBALOC/CORBANAME patched a memory leak and fixed performance related
2193 to the use of defaulted object keys.
2195 . Added support for Visual Age on AIX
2197 . Made it possible to run most ORB core test with VxWorks in a cross host
2198 scenario where one part of the test runs on the host and the other part
2199 of the test runs on the VxWorks target
2201 . The skeletons generated by the TAO_IDL compiler have been refactored
2202 to significantly reduce the size of server applications. Please see
2204 http://www.dre.vanderbilt.edu/Stats/
2206 for metrics that illustrate the magnitude of the reduction.
2208 . New TypeCode implementation that reduces the size of TypeCodes in
2211 USER VISIBLE CHANGES BETWEEN TAO-1.4.3 and TAO-1.4.4
2212 ====================================================
2214 . Reimplemented the way that TAO_Transport deals with GIOP headers. In
2215 some cases partial GIOP message headers were read and used as if a full
2216 GIOP header were received. [Bug 1681]
2218 . GIOP fragment handling has changed where a single large allocation and
2219 copy occurs at the end of a fragment chain instead of an allocation and
2220 copy for every fragment received.
2222 . The tao-config script has been replaced by pkg-config metadata files
2223 which are installed in ${prefix}/lib/pkgconfig by the automake build.
2225 . SHMIOP respects now the dotted decimal addresses setting. When this is
2226 set it uses ip addresses instead of hostnames.
2228 . Removed the usage of the ACE_x_cast macros, we are using the C++ casts
2229 from now on. The TAO core libraries will be updated before the x.4.5
2232 . Removed MPC code that creates unused and unnecessary subfolders in
2233 Visual Studio projects and makefiles.
2235 . Fixed unclosed temporary file created by the IDL compiler on platforms that
2236 lack mkstemp. [BUGID:2026]
2238 . Fixed IDL compiler bug related to handling null object references in a
2239 sequence. [BUGID:2027]
2241 . Made behavior when marshaling null value of an abstract interface similar
2242 to the behavior of CORBA::Object.
2244 . Made use of 'true' and 'false' with CORBA::Boolean more consistent in TAO
2245 source code and generated code.
2247 . Fixed bug in code generation for typedefs of IDL arrays that are not declared
2248 at global scope or in a module (i.e., in an interface, valuetype, eventtype
2251 . Fixed bug in code generation of parent operations in AMI ReplyHandler
2254 . Changed remaining instances of C-style casts in generated code to the
2255 appropriate C++-style cast.
2257 . Fixed typo in code generation of bounded sequences of CORBA::Object.
2259 . Fixed bug in code generation for attributes which are unaliased bounded
2262 . Changed implementation of TAO::Unknown_IDL_Type (a subclass of TAO::Any_Impl
2263 used when an Any is first decoded from the wire or created from a Dynamic
2264 Any) to contain its value in a TAO_InputCDR stream rather than an
2265 ACE_Message_Block*, thus cleaning up alignment and memory management code
2266 related to this type.
2268 USER VISIBLE CHANGES BETWEEN TAO-1.4.2 and TAO-1.4.3
2269 ====================================================
2271 . New pluggable protocol for GIOP over HTBP, known as HTIOP. Source in
2272 orbsvcs/orbsvcs/HTIOP.
2274 . All TAO-specific vendor IDs are now found in the "TAO" namespace.
2275 Documentation for these constants has also been improved in a number
2278 . Further reduced inter-header dependencies, which should improve
2279 compilation times for TAO and TAO applications.
2281 . Fixed memory leak in CDR encapsulation Codec's encode_value() method.
2283 . Modified PerlACE scripts for Tests/test environment to allow
2284 per-platform customization of process startup delay. Used the changes
2285 in various run_test scripts.
2287 . SyncScope::NONE blocks during connects [Bug 1476].
2289 . Improved compatibility with JDK orb.
2291 . Added Wait on LF No Upcalls (MT_NOUPCALLS) wait strategy. However,
2292 recent experiences with it indicate there may be problems in scenarios
2293 other than its original motivating case (see ChangeLog). This feature
2294 should be considered EXPERIMENTAL, and use it at your own risk.
2296 . New CORBALOC parsing is available. This feature allows TAO clients to
2297 use any third-party pluggable protocol in corbaloc strings.
2299 . Fixed bug that caused memory fault when incoming object reference
2300 contains an unknown profile.
2302 . Fixed problem in some modules when platform lacks unsigned long long
2305 . Modified catior to allow decoding of additional protocols.
2307 . The PortableServer library isn't depended anymore on the
2308 ObjRefTemplate and IORInterceptor libraries. ObjRefTemplate and
2309 IORInterceptor are loaded on demand and depend on PortableServer.
2311 . IDL compiler can be built for environments that lack unsigned long
2314 . Reduced the amount of code generated by the TAO_IDL compiler when
2315 using forward declarations.
2317 . Naming Service implementation memory leak fixes.
2319 . Split ORB Services into stub, skeleton, and implementation libraries.
2320 Changes to the Naming, Trading, Event, Notification, and Logging
2321 Services have been committed.
2323 . Common utilities (tao_imr, tao_ifr, nslist, nsadd, nsdel,
2324 NamingViewer) now installed in $ACE_ROOT/bin.
2326 . Changed #includes of orbsvcs header files to be consistent. The
2327 pathname now always contains a "orbsvcs/" prefix.
2329 . Notification Service EventReliability and ConnectionReliability QoS
2330 have been added to bring the DOC version of Notification Service
2331 into feature parity (in this area) with OCITAO's 1.3a version of the
2332 Notification Service. Note that due to changes between 1.3a's
2333 source base and DOC's 1.4.3 source base, this is a re-implementation
2334 of the changes and not a simple port.
2336 In addition to the changes made directly to the Notification Service
2337 a number of test and example programs have been created for the
2338 reliable notification service. These programs may be found in
2339 subdirectories of $TAO_ROOT/orbsvcs/tests/Notify. A README file
2340 in each directory provides more detailed information, and a run_test.pl
2341 script is included to run the example or test.
2343 . A change has been made to the Notification Service IDL to improve build
2344 times and reduce the Notification Service footprint. The change suppresses
2345 the generation proxy and stub code for the many interfaces that are
2346 specified by the OMG, but are not implemented in TAO.
2348 . Implementation Repository refactored to allow the locator and
2349 activator to be used as services in the ACE Service Configurator
2350 framework. The locator and activator services have been split into
2351 separate libraries and executables. There have also been
2352 miscellaneous bugs fixed and performance enhancements made.
2354 . Fixed Load Balancer binary generation problem. Libraries were being
2355 created rather than executables.
2357 . Work around MSVC++ 6 namespace brain damage in new Security/SSLIOP
2360 . Fixed memory management problem in SecurityLevel3 code.
2363 USER VISIBLE CHANGES BETWEEN TAO-1.4.1 and TAO-1.4.2
2364 ====================================================
2367 - Support for g++ 3.4.1.
2368 - Support added for latest HP aCC compiler.
2369 - Improved Doxygen documentation.
2370 - Reduced header file dependencies, which should speedup compilation
2371 and help minimize static footprint.
2374 - Fixed memory leak in DII exception handling.
2375 - Fixed insertion of label values when creating a union type code
2376 with create_union_tc().
2377 - Support for retrieving AMI and AMH reply handlers from a local
2379 - Fixed location forwarding to collocated objects.
2382 It is now possible to pass user-defined policies unknown to the
2383 POA with corresponding registered policy factories to the
2384 POA::create_POA() method via its policy list parameter, as
2385 required by the CORBA specification.
2388 - Closed security hole on platforms that support mkstemp() function.
2389 - Fixed potential buffer overrun problem.
2390 - A number of scoped name bugs have been fixed, including some
2391 workarounds for MSVC++ 6 scope resolution problems.
2392 - Fixed mixing of *Implicit and *Explicit inheritance lines when the
2393 there is a chain of inheritance in component homes.
2394 - Improved error checking of component and home declarations.
2395 - Code generation for valuetypes that support one or more abstract
2397 - Added new "-GA" option that causes CORBA::Any operators and
2398 TypeCode bodies to be generated in a separate "fooA.cpp" file.
2399 Helps reduce footprint for applications that do not use Anys or
2401 - Added required _downcast() method to generated value factories.
2402 - Disabled generation of implementation class for abstract
2404 - Removed support for reading an IDL file from stdin. This feature
2405 is legacy code used for debugging the IDL compiler in the early
2406 days of its implementation, and is not useful in application
2408 - Generated stub/skeleton inline files now end in ".inl" instead of
2409 ".i". The latter is generally used as the extension for
2410 pre-processed C sources.
2411 - Process multiple IDL files in a single execution by iteration
2412 in a single process, rather than spawning a process for each
2414 - Added the remaining spec-defined sequences of predefined types
2415 to the CORBA namespace in TAO.
2417 . Added CPU utilization load monitor to TAO's Cygnus load balancer.
2419 . Added basic CSIv2 support, which is the latest CORBA Security
2420 architecture specification.
2422 USER VISIBLE CHANGES BETWEEN TAO-1.4 and TAO-1.4.1
2423 ==================================================
2427 . Changed the name of a parameter to the TAO type code
2428 internal method to avoid a name clash with STL.
2430 . Added the spec-required ostream insertion operator for
2431 CORBA::Exception* to go with the existing ostream
2432 insertion operator for CORBA::Exception&.
2434 . Moved the above ostream insertion operators into the
2435 CORBA namespace, so they cannot be accidentally hidden by an
2438 . Moved the declaration of Any operators for some ORB
2439 types so that the corresponding definitions may
2440 remain unlinked if the Any operators are not used in
2443 . Fixed typo in type code factory code that is compiled
2444 only when ACE_SWAP_ON_WRITE is defined.
2446 . Several fixes to MakeProjectCreator (MPC) files, which
2447 generate GNU makefiles, Borland makefiles, and Microsoft
2448 Visual Studio project files.
2450 . Fixed Any insertion and extraction operators for bounded
2451 strings and wstrings to prevent an error if they are
2452 inserted as bounded with bound 0 and extracted as
2453 unbounded, or vice versa.
2455 . Deprecated the TAO-specific _type() method for exceptions.
2456 which is no longer used anywhere in TAO, and is retained
2457 solely for backward compatibility.
2459 . Fixed bug in TAO_SSLIOP pluggable protocol that prevented large
2460 requests from being sent. [Bug 1429]
2462 . Cleaned up interceptor memory leaks that occurred when
2463 CORBA::ORB::destroy() was called.
2465 . Fixed problem where a ServerRequestInterceptor could be called after
2466 the ORB was shutdown. [Bug 1642]
2468 . Overhauled PICurrent support to fix several problems. [Bug 1215, 1738]
2470 . SSLIOP documentation is now available.
2472 . Fixed memory leaks in servers when the ORB is operating in a
2473 thread-per-connection mode. This problem showed up when clients
2474 keep connecting and disconnecting from the servers.
2476 . Fixed memory leaks in AMI clients that connect to a servers over
2477 unreliable connections that keeps getting dropped.
2479 . Fixed a race connection in Any_Impl implementation.
2481 . Fixed a byte order problem with DSI gateways
2483 . Added support for OVATION to work with this BFO of TAO.
2488 . Changed the names of some local variables in generated
2489 operation code, to reduce that chance of a name clash.
2491 . Fixed bug where a #pragma version directive is sometimes
2492 not reflected in the generated repository id.
2494 . Disambiguated generated template instantiations for array
2495 _var, _out and _forany classes, when two or more arrays
2496 have the same element type and bound.
2498 . Added check for a name clash between a valuetype member
2499 and the first segment of a scoped name referenced in
2502 . Fixed incorrect code generation for the CDR operator of a
2503 struct/union/exception with an undefined forward declared
2506 . Fixed incorrect code generation for operation arguments
2507 that are typedefs of char, octet and boolean.
2509 . Fixed bug in handling complex recursive types.
2511 . Added -GId command line option to generate line and
2512 file debug info in *I.* files, similar to what is
2513 already generated in *C.* and *S.* files. This debug
2514 info generation is now off by default in *I.* files.
2516 . Fixed the handling of included orb.idl file to generate
2517 corresponding C++ includes for the files orb.idl
2518 itself includes, which contain spec-required declarations
2519 of sequences of basic CORBA types.
2521 . Fixed generation of ORB file includes triggered by the
2522 presence of one or more abstract interfaces in an IDL file.
2524 . Added check to the generation of _setup_collocation()
2525 method for abstract interfaces, to make it more robust.
2527 . Added a version of the realpath() system function that
2528 can be used with LynxOS, which does not have a native
2531 . Fixed code generation for bounded strings and wstrings
2532 when they appear anonymously (without a typedef) as operation
2535 . Fixed code generation of flat names for AMI-related types.
2537 . Fixed errors in code generation of sequences of components
2540 . Fixed code generation of CDR operators for aggregate types
2541 that contain one or more abstract interfaces.
2543 . Fixed bogus errors produced when there are repeated forward
2544 declarations of an interface.
2546 . Fixed errors in some use cases of the propagation of a #pragma
2547 prefix directive to nested scopes in generated repository ids.
2549 . Fixed errors in code generation for attributes in Asynchronous
2550 Method Handler (AMH) classes.
2552 . Fixed a bug that caused the IDL compiler to crash when it sees
2553 certain kinds of illegal IDL.
2555 . Fixed problems in the interaction of checks for local interface
2556 and for null object reference when marshaling an interface
2557 member of an aggregate type.
2559 . Fixed generation of operations inherited by a local interface
2560 from a non-local one - these operations must be regenerated
2563 . Added a space between some generated template parameter
2564 opening brackets and a leading double colon of a fully
2565 scoped name, since some compilers would read "<:" as
2566 the digraph character for ']'.
2568 . Fixed bug in code generation for an array of typedef of
2571 . Fixed a bug in the generation of repository ids for
2572 explicit, implicit and equivalent interfaces for component
2575 . Fixed bugs in the generation of marshaling and demarshaling
2576 code for aggregate types with component or eventtype members.
2584 . Fixed bug in creating entries for attributes, which in CORBA 3.x may
2585 have separate get- and set- exceptions lists.
2587 . Added some method overrides to disambiguate multiple inheritance
2588 problems some compilers would have in classes added to support CORBA
2591 . Fixed bugs in entering attributes of abstract and local interfaces,
2592 and in querying for attributes of components.
2594 . Added a "-m" option to IFR_Service to enable multicast discovery of
2600 . Added two new strategies, namely LoadAverage and LoadMinimum.
2602 NOTIFICATION SERVICE:
2603 ---------------------
2604 . Corrected the implementation to add the caller's <subscribed_types>
2605 to the Admin Object's types. This solves the problem that if a
2606 proxy's connect_structured_push_consumer() is called *AFTER* the
2607 proxy's subscription_change(), then the subscriptions do not work.
2609 . Added the -NoUpdates option to the Notification svc.conf
2610 options. If this option is specified, the
2611 subscription_change/offer_change messages are NOT sent to proxy
2612 objects. This option is useful to turn off entire updates for
2613 applications that do not reply on subscription_change/offer_change
2617 USER VISIBLE CHANGES BETWEEN TAO-1.3.6 and TAO-1.4
2618 ==================================================
2622 . Fixed bug related to the order of #pragma prefix and #include
2625 . Fixed bug in generation of copy constructor for AMH interface
2628 . Fixed incorrect handling of a parameter name in an AMI sendc_xxx
2629 operation that clashes with a C++ keyword.
2631 . Readded the generation of _unchecked_narrow () back into the stub
2632 code since it is required by the latest OMG CORBA specification.
2637 . SCIOP endpoints are not created by default. They need explicit
2638 specification of -ORBEndpoint sciop:// at startup.
2640 . Fixed a bug that caused the ORB to dump a core when server side
2641 interceptors returns an exception and if the operation parameters
2642 contains a sequence an out parameter.
2644 . Fixed a bug that caused extraction of basic data types that are
2645 aliased from an Any.
2647 . Added a couple of regressions tests for some of AMH features.
2649 . Lots of other bug fixes (see the bottom of this message for a
2650 complete list of bugzilla bugids fixed in this beta).
2652 . Fixed a problem with dynamic loading of the ORB. This was introduced
2653 by "magic" static constructors in the TAO PortableServer headers
2654 where dynamic loading/unloading of the ORB failed.
2656 . Added an option, -ORBDisableRTCollocation which allows users to
2657 disable the RT collocation technique used by TAO and fall back on the
2658 default collocation technique used for the vanilla ORB.
2660 . Prevent the TP_Reactor used within TAO from exiting when it receives
2661 a EINTR during select ().
2666 . Added new security variable so that libTAO_Security could be built
2667 independently of libTAO_SSLIOP, and set the default to true.
2669 . An initial implementation of the FTCORBA spec has been added to
2670 TAO. This release features an initial cut of ReplicationManager,
2671 FaultNotifier, and a FaultDetector. Please see
2673 $TAO_ROOT/orbsvcs/tests/FT_App/README
2675 for a simple example that uses the different FTCORBA features that
2676 have been implemented in TAO.
2678 . Fixed a bug, in PG_ObjectGroupManager::remove_member () methods
2679 which caused the group entry to be available in the location_map
2680 when a member of the object group is removed.