Chapter 9: Developing CORBA/C++ Clients


Procedure for creating CORBA C++ clients

A CORBA C++ client establishes a connection and session with the EAServer ORB, instantiates a proxy object for the component, and calls methods in the proxy object. When the client calls the methods in the proxy objects, the proxy object methods communicate across the network and execute the corresponding methods in the components.

To create CORBA EAServer C++ clients:

  1. Generate C++ header files and CORBA stub implementations for the IDL modules used in the component implementation. See “Generating stubs”.

  2. Implement the C++ client logic. See “Writing CORBA C++ clients”.

  3. Compile the C++ source files as described in “Compiling C++ clients”.