I've been looking for some way to let a Delphi program communicate with a RoR service. I could use any of the SOAP libraries out there e.g.: ActionWebService to offer a SOAP service, which I could then use in the Delphi program.
However, this requires one to reimplement all the ActiveRecord methods (such as find
) over and over again. This is a hassle even if they are only delegation methods.
Who knows of a simpler / easier / cleaner way?