Hi there,
I need help.
sgcWebSocketServer
when server shutdown accidently
i try reconnect unable to continue previous rpc call
what the problem?
i have few transaction to save
line 1,2,3 was saved but when line 4 the server shutdown accidently
and after this i unable to continue next action.
here is function call ,please help
if DM.wsClient.Active = false then
begin
DM.wsClient.Host := '192.168.1.123';
DM.wsClient.Port := 8181;
try
DM.wsClient.Active := True;
if not DM.wsClient.Active then
fnShowMessage('Server not respond!', C_ERROR);
finally
end;
end;
if strJSON <> '' then begin
DM.wspProtocol.RPC(FUUID, 'save', strJSON);
thanks
I need help.
sgcWebSocketServer
when server shutdown accidently
i try reconnect unable to continue previous rpc call
what the problem?
i have few transaction to save
line 1,2,3 was saved but when line 4 the server shutdown accidently
and after this i unable to continue next action.
here is function call ,please help
if DM.wsClient.Active = false then
begin
DM.wsClient.Host := '192.168.1.123';
DM.wsClient.Port := 8181;
try
DM.wsClient.Active := True;
if not DM.wsClient.Active then
fnShowMessage('Server not respond!', C_ERROR);
finally
end;
end;
if strJSON <> '' then begin
DM.wspProtocol.RPC(FUUID, 'save', strJSON);
thanks