You are not logged in.
Pages: 1
Hi,
I rebuilt example 14 (with a calculator) to work on the numbers of type Double (from Integer).
ICalculator = interface(IInvokable)
['{9A60C8ED-CEB2-4E09-87D4-4A16F496E5FE}']
function Add(n1,n2: Double): Double;
end;
[...]
TServiceCalculator = class(TInterfacedObject, ICalculator)
public
function Add(n1,n2: Double): Double;
end;
Then now I get error in server (SynCommons.GetExtended):
Breakpoint on GetExtended:
After Step Over (F8):
Offline
It should be fixed by http://synopse.info/fossil/info/b68a0a37b3
Thanks for the feedback!
Offline
Pages: 1