I have a DataSnap Server with a Server method like this:
function TServerMethods1.selectFalzUser(Usuario: string) : TDataSet;
Now, on the DataSnap Client using TSQLServerMethod, I successfully connect to the server in Design Mode, pull server's methods list ... select 'selectFalzUser'... and I can succesfully see my params, both Usuario as INput, and the output TDataset Param... when a try to set my SqlServerMethod Active ... I get the following error:
Error Remote error: TServerMethods1.selectFalzUserwhereUsuario method not found in the server method list.
Why Delphi is appending 'whereUsuario' string to the method name? Obviously TServerMethods1.selectFalzUserwhereUsuario does not exist.
Regards
zaguerino.