Answered step by step
Verified Expert Solution
Question
1 Approved Answer
-Create package named mid2 inside your project. The CORBA related files and classes will be placed inside this package. -Inside mid2 package, create the
-Create package named mid2 inside your project. The CORBA related files and classes will be placed inside this package. -Inside mid2 package, create the other two sub-packages: server and client. All classes related to the server/servant will have to be placed inside server package and all client-related classes will have to be placed inside client package. -The client program must test the methods as reflected in the CORBA IDL file. Register the CORBA object in the orb with the string "convert". Also, include the file mid2.idl in the mid2 package. Content of the file is as follows: -For the ORB port numbers, you are to use 1100 (ORB). module converter { interface Conversion { double convertToInch(in double cm); double convertToCm(in double inch); }; }; Remember that an inch is equivalent to 2.54 centimeters!
Step by Step Solution
There are 3 Steps involved in it
Step: 1
no ans...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started