How do I select a custom GetData request call in C# .NET?
I tried simply setting the MethodName
remoteDataAdapter_.DataRequestCall.MethodName = “MyGetData”;
but this yields an error
Probably the (different) request parameters are causing this.
We do something similar in delphi where we have our own RefreshParams function which uses
FindService and then lService.Default.FindOperation to get the correct parameters in the request
However I don’t find FindOperation in the .NET SDK/documentation
FYI: Ideally this is a very lightweight action which does not require server access because the function call signature is already somewhere in a client file.
Our current delphi solution (where the entire RODL schema is fetched) is slow.
Function signatures don’t change a lot. They could be made available on the client side similar like the itf files