문제

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>();

올바른 솔루션이 없습니다

다른 팁

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top