简体   繁体   中英

How to make CORBA between Java server and C++ client?

I came to know that IDL is used for communication between server and client in CORBA, which is independent of languages.

As far as I know there is a plugin available for Eclipse (for creating the server of CORBA). For C++, OmniORB, Taox and etc.,

Suggest me the best tool and best practice for creating client in C++, which is having less dependencies and very good support for Java Server.

  1. Define a remote interface in Java.
  2. Generate a server POA, with rmic -iiop .
  3. Define a server implementation that extends the POA.
  4. Generate the IDL, with rmic -idl.
  5. Follow the normal steps for your ORB to write your client given the IDL.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM