(Delphi DLL) HTTP Post XML
Demonstrates how to POST XML to a website.
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, HttpResponse, Http;
...
procedure TForm1.Button1Click(Sender: TObject);
var
http: HCkHttp;
url: PWideChar;
xmlBody: PWideChar;
resp: HCkHttpResponse;
begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http := CkHttp_Create();
// Make sure to replace the URL with something real...
url := 'https://example.com/example.asp';
xmlBody := '<test>This is the XML to be sent</test>';
resp := CkHttp_PostXml(http,url,xmlBody,'utf-8');
if (CkHttp_getLastMethodSuccess(http) = False) then
begin
Memo1.Lines.Add(CkHttp__lastErrorText(http));
end
else
begin
// Examine the body of the response.
Memo1.Lines.Add(CkHttpResponse__bodyStr(resp));
end;
CkHttp_Dispose(http);
end;
|