Question

Is there such a way to write CORBA IDL to generate stubs for a Hashmap for storing the following for example?

public static final Map<Date, Integer> map = new HashMap<Date, Integer>();

No correct solution

OTHER TIPS

If you're in control of the server, define it in a remote interface via RMI/IIOP, implement it via PortableRemoteObject, and then use rmic -idl to generate the IDL, but note that the clients will need an ORB that supports objects-by-value. If the clients are Java just use the RMI/IIOP stubs directly and forget about the IDL altogether.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top