somthing like:
server
func2, call funcexec function as a local function
func1, inside execution call the same funcexec
?
i try now this but i stuck (is not tested yet) (this is inside func1 body) (is not like you sugested)
...
params:=trtcfunctioninfo.Create;
params.asString['tel']:='xxx';
params.asString['txt']:='yyy';
try
sendsmsNotif.Call_Execute(
, params, res);
here i stuck except
on e:exception do
logfile('ERR', 'ERR', 'Send SMS inside new HTTP order, with execution error'+e.Message);
end;
params.Free;
...
where sendsmsNotif is func2 with remotecall possibilitie as stand alone as well.