I have a set of functions in C / C ++ that should be available to receive calls and return values to C / C ++ code in a remote place, similar to RMI on the java platform. Using RMI, Java methods are configured through rmiregistry and remain available in memory for receiving requests. I am looking for similar functionality in C / C ++, but I'm a little confused with all the options that are there. Is this the type of script CORBA is for, and if so, is it still the best technology to use, or are there better options out there. I read about XML-RPC, CORBA and some others, but I'm not sure which one I need.
Thank you for your help.
Mike
source
share