Sample code for 30+ languages & platforms
Delphi DLL

TicketBAI -- Send HTTP POST

See more TicketBAI Examples

Demonstrates how to send a TicketBAI POST and get the response.

Chilkat Delphi DLL Downloads

Delphi DLL
uses
    Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
    Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Http, StringBuilder, HttpResponse, JsonObject;

...

procedure TForm1.Button1Click(Sender: TObject);
var
success: Boolean;
http: HCkHttp;
sbXml: HCkStringBuilder;
json: HCkJsonObject;
url: PWideChar;
resp: HCkHttpResponse;

begin
success := False;

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

http := CkHttp_Create();

success := CkHttp_SetSslClientCertPfx(http,'your.pfx','pfx_password');
if (success = False) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

// Get the XML we wish to send in the body of the request.
sbXml := CkStringBuilder_Create();
success := CkStringBuilder_LoadFile(sbXml,'qa_data/payload.xml','utf-8');
if (success = False) then
  begin
    Memo1.Lines.Add('Failed to load XML that is to be the HTTP request body');
    Exit;
  end;

// Build the following JSON

// { 
//     "con": "LROE", 
//     "apa": "1.1", 
//     "inte": { 
//         "nif": "número de identificación fiscal", 
//         "nrs": "nombre o Razón social", 
//         "ap1": "primer apellido", 
//         "ap2": "segundo apellido" 
//     }, 
//     "drs": { 
//     "mode": "140", 
//     "ejer": "ejercicio" 
//     } 
// }

// Use this online tool to generate code from sample JSON: 
// Generate Code to Create JSON

json := CkJsonObject_Create();
CkJsonObject_UpdateString(json,'con','LROE');
CkJsonObject_UpdateString(json,'apa','1.1');
CkJsonObject_UpdateString(json,'inte.nif','número de identificación fiscal');
CkJsonObject_UpdateString(json,'inte.nrs','nombre o Razón social');
CkJsonObject_UpdateString(json,'inte.ap1','primer apellido');
CkJsonObject_UpdateString(json,'inte.ap2','segundo apellido');
CkJsonObject_UpdateString(json,'drs.mode','140');
CkJsonObject_UpdateString(json,'drs.ejer','ejercicio');

// Add required headers...
CkHttp_SetRequestHeader(http,'eus-bizkaia-n3-version','1.0');
CkHttp_SetRequestHeader(http,'eus-bizkaia-n3-content-type','application/xml');
CkHttp_SetRequestHeader(http,'eus-bizkaia-n3-data',CkJsonObject__emit(json));

url := 'https://pruesarrerak.bizkaia.eus/N3B4000M/aurkezpena';
resp := CkHttpResponse_Create();
CkHttp_putUncommonOptions(http,'SendGzipped');
success := CkHttp_HttpSb(http,'POST',url,sbXml,'utf-8','application/octet-stream',resp);
if (success = False) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

CkHttp_ClearHeaders(http);

Memo1.Lines.Add('response status code: ' + IntToStr(CkHttpResponse_getStatusCode(resp)));

// Examine the response (it is already decompressed)
Memo1.Lines.Add('response body:');
Memo1.Lines.Add(CkHttpResponse__bodyStr(resp));

CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbXml);
CkJsonObject_Dispose(json);
CkHttpResponse_Dispose(resp);

end;