|
From: <lk...@us...> - 2004-11-14 21:38:44
|
Update of /cvsroot/openorb/OpenORB In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4887 Modified Files: WHATSNEW Log Message: removed property iiop.useNativeLibrary in favour of iiop.deserializationEngine Allow lazy initialization of DeserializationKernel and make lazy:auto the default behaviour On Sun JDK 1.5 test errors are down to one error in PrimitiveTest.testValuetypes() because of lazy initialization Index: WHATSNEW =================================================================== RCS file: /cvsroot/openorb/OpenORB/WHATSNEW,v retrieving revision 1.230 retrieving revision 1.231 diff -u -d -r1.230 -r1.231 --- WHATSNEW 10 Nov 2004 19:19:56 -0000 1.230 +++ WHATSNEW 14 Nov 2004 21:38:35 -0000 1.231 @@ -1,6 +1,17 @@ OpenORB ------- +- Replaced boolean property iiop.useNativeLibrary with a new + property iiop.deserializationEngine to control the engine + used for RMI/IIOP valuetype deserialization. Possible + values are 'auto' (VM dependent engine, some VMs currently + not supported), native (use native code from openorb's native + module) and none (runtime errors when trying to use RMI/IIOP + deserialization). If the value is prefixed with 'lazy:' the + desrialization engine will be created on demand. + For a more detailed descriptions of the available options + please see default.xml. + - Fixed NPE in commandline parsing of IdlDoc tool. - Extended the test case FragmentedMessageTest to include |