procedure addHttpBody(httpConn: http; data: string);  

  'data'    http.        POST. 




procedure addHttpHeader(httpConn: http; name, value:string);  

    http. ,    "Accept-encoding: gzip, none",     "Accept-encoding"   'name'   "gzip, none"   'value'. 




procedure closeHttp(httpConn: http);  

   http. 





function getHttpHeader(httpConn: http; name: string): string;  

   'name'  http. ,     "Content-type: text/plain",     "Content-type"  'name',   "text/plain". 





function getHttpResponse(httpConn: http):string;  

 ,       http. 




function isHttpOpen(httpConn: http):boolean;  

 'true'   'httpConn' . 





function openHttp(httpConn: http; url: string):boolean;  

  'httpConn'   'url'.      : "http://servername[:port][/file]".  'true'      'false'   . 





function sendHttpMessage(httpConn: http): integer; 

    http,        -1   .        (, 200    ). 





procedure setHttpMethod(httpConn: http; method:string);  

      http: 
  GET  
  POST  
  HEAD  