Danijel,
I delivered a client/server application to customers and I am haunted by above exception which occurs when you send several requests in a short timeframe. Code excerpt:
with RtcClientModule1 do try
begin
with Prepare('TERMINATOR') do
begin
if l0(edit2.Text) then
asString['name']:='
' // Was gibts Neues
else
begin
asString['name']:=edit2.Text; edit2.Text:='';
end;
asString['nutzer']:=person;
with Execute(True,15000) do // execute remote function (free result before next call; call timeout 5000 miliseconds).
ergebnis:=asstring;
verarbeiten(self,ergebnis);
end;
end;
except
on e: exception do
If a new requests is sent after the response has been received everything is fine.
Can you provide any insight into this issue?
Kind regards,
Manfred