I dynamically create IdHTTP, execute a POST request to my php script. Source example:
http := TIdHTTP.Create(Nil); try sl.add('name=value'); try html.Text := http.Post('http://page.ru', sl); finally http.Free(); end; except on E: EIdException do begin // исключение end; end; One of the users of the program regularly flies the following exceptions:
Socket Error # 10038 Socket operation on non-socket.
Socket Error # 10038 Socket operation on non-socket.
Socket Error # 10004 Interrupted system call.
Socket Error # 10004 Interrupted system call.
I read the description on MSDN, but how to solve it is not clear. Help Wanted!