You are not logged in.
Pages: 1
Hello,
I'm getting this error on the log on the client side:
20140526 10314844 ERROR TSQLHttpClientWinHTTP(067C3460) POST root/ConfigcxGrids returned 503 Service Unavailable with message Service Unavailable stack trace API 00678D5D 006B9B58 006BA020 006B5A13 006C60A8 00C81B24 01371419 013707DD 0062E164 01372FDB 01372A3D 014EDFC5 013D6D43 00556A5D 0055ABEE 00578B99 004D8B92 769986EF 76998876 769989B5
20140526 11222717 ERROR TSQLHttpClientWinHTTP(067C3460) GET root returned 503 Service Unavailable with message Service Unavailable stack trace API 00678D5D 006B9B58 006B87EE 006B4C1B 006ACC0C 00D9544C 014ED98B 014EC918 013716A3 0136FE85
What does it mean this "503 Service Unavailable" error? how can I avoid it?
Offline
See
Client := TSQLHttpClient.Create(AnsiString(edtServerName.Text),'888',Model);
if not Client.ServerTimeStampSynchronize then begin
ShowMessage(UTF8ToString(Client.LastErrorMessage));
FreeAndNil(Client);
exit;
end;
in sample "20 - DTO interface based service" and "14 - Interface based services" for instance.
See also http://blog.synopse.info/post/2013/07/0 … responsive
Offline
Pages: 1