In this exercise, you will implement calling a simple remote method for the course project. At this point, we have two server objects, whose
interfaces are:
module BookShopModule {
interface BookStoreInv {
long getNumCopiesOfBook(in string title);
boolean isBookInStock(in string title);
};
interface Pricer {
float priceBook(in string title);
};
};
Your job here is to fill in the client application that accesses the above server objects. The two servers have been implemented for you. The
servers will place references into the Naming Service upon startup. You are also given a shell of the client application, which calls the Naming
Service and gets references to the two server objects you will need. All you need to do is modify one method in this client shell.