Hi,
With a little bit of effort you can still access the IcePack registry from an Ice-E application. You'll need to create simplified versions of the IcePack Slice files (Query.ice and Admin.ice) in order to translate them for Ice-E. I suggest removing all of the operations and data types from IcePack::Admin that you do not use. You will also need to remove the inclusion of BuiltinSequences.ice, and supply equivalent sequence definitions. For example, in Query.ice:
Code:
#include <Ice/Identity.ice>
// #include <Ice/BuiltinSequences.ice> // disabled
module Ice {
sequence<Object*> ObjectProxySeq;
};
...
Hope that helps,
- Mark