Proxy Server Sample
This example shows how to create a proxy server to redirect the calls to another
server without having to recreate the RODL file, thus allowing the use of the same types of the original server.
This provides total control. As every call will pass from the proxy class before going to the real server, you can even stop methods from being dispatched any further.
ProxyServer_ProxyServer_Impl was created by simply copying the original MainService_Impl.pas file, renaming the TMainService class to TProxyService followed by implementing a bypass for all the method calls. This class is basically a server which accesses a RemObjects SDK server as a client would do.