Pascal (Lazarus/Delphi)
Pascal (Lazarus/Delphi)
SOAP Request to farmaclick.infarma.it
See more HTTP Misc Examples
Demonstrates how to make a SOAP HTTP request to the FCKLogin method of farmaclick.infarma.it.Chilkat Pascal (Lazarus/Delphi) Downloads
program ChilkatDemo;
// Demonstrates using the Chilkat Pascal wrapper via the C bridge DLL.
// Builds as a console application under Lazarus (FPC) or Delphi.
{$IFDEF FPC}
{$MODE DELPHI}
{$ENDIF}
{$APPTYPE CONSOLE}
uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
SysUtils,
CkDllLoader,
Chilkat.Http,
Chilkat.HttpResponse,
Chilkat.Xml;
// ---------------------------------------------------------------------------
procedure RunDemo;
var
success: Boolean;
xml: TXml;
http: THttp;
resp: THttpResponse;
xmlResp: TXml;
begin
success := False;
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// --------------------------------------------------------------------------------
// Also see Chilkat's Online WSDL Code Generator
// to generate code and SOAP Request and Response XML for each operation in a WSDL.
// --------------------------------------------------------------------------------
// Here is an example of an HTTP POST Request we'll be sending:
// POST /documento.php HTTP/1.1
// Content-Type: text/xml;charset=UTF-8
// SOAPAction: https://conexion.facto.cl/documento.php/emitirDocumento
//
// <soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:api="http://api.farmaclick.infarma.it">
// <soapenv:Header/>
// <soapenv:Body>
// <api:FCKLogin soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
// <inBean xsi:type="urn:LoginInputBean" xmlns:urn="urn:BeanService">
// <nomeTerminale xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">?</nomeTerminale>
// <password xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">?</password>
// <passwordSH xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">?</passwordSH>
// <userName xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">?</userName>
// </inBean>
// </api:FCKLogin>
// </soapenv:Body>
// </soapenv:Envelope>
// Use this online tool to generate code from sample XML:
// Generate Code to Create XML
xml := TXml.Create;
xml.Tag := 'soapenv:Envelope';
xml.AddAttribute('xmlns:xsi','http://www.w3.org/2001/XMLSchema-instance');
xml.AddAttribute('xmlns:xsd','http://www.w3.org/2001/XMLSchema');
xml.AddAttribute('xmlns:soapenv','http://schemas.xmlsoap.org/soap/envelope/');
xml.AddAttribute('xmlns:api','http://api.farmaclick.infarma.it');
xml.UpdateChildContent('soapenv:Header','');
xml.UpdateAttrAt('soapenv:Body|api:FCKLogin',True,'soapenv:encodingStyle','http://schemas.xmlsoap.org/soap/encoding/');
xml.UpdateAttrAt('soapenv:Body|api:FCKLogin|inBean',True,'xsi:type','urn:LoginInputBean');
xml.UpdateAttrAt('soapenv:Body|api:FCKLogin|inBean',True,'xmlns:urn','urn:BeanService');
xml.UpdateAttrAt('soapenv:Body|api:FCKLogin|inBean|nomeTerminale',True,'xsi:type','soapenc:string');
xml.UpdateAttrAt('soapenv:Body|api:FCKLogin|inBean|nomeTerminale',True,'xmlns:soapenc','http://schemas.xmlsoap.org/soap/encoding/');
xml.UpdateChildContent('soapenv:Body|api:FCKLogin|inBean|nomeTerminale','?');
xml.UpdateAttrAt('soapenv:Body|api:FCKLogin|inBean|password',True,'xsi:type','soapenc:string');
xml.UpdateAttrAt('soapenv:Body|api:FCKLogin|inBean|password',True,'xmlns:soapenc','http://schemas.xmlsoap.org/soap/encoding/');
xml.UpdateChildContent('soapenv:Body|api:FCKLogin|inBean|password','?');
xml.UpdateAttrAt('soapenv:Body|api:FCKLogin|inBean|passwordSH',True,'xsi:type','soapenc:string');
xml.UpdateAttrAt('soapenv:Body|api:FCKLogin|inBean|passwordSH',True,'xmlns:soapenc','http://schemas.xmlsoap.org/soap/encoding/');
xml.UpdateChildContent('soapenv:Body|api:FCKLogin|inBean|passwordSH','?');
xml.UpdateAttrAt('soapenv:Body|api:FCKLogin|inBean|userName',True,'xsi:type','soapenc:string');
xml.UpdateAttrAt('soapenv:Body|api:FCKLogin|inBean|userName',True,'xmlns:soapenc','http://schemas.xmlsoap.org/soap/encoding/');
xml.UpdateChildContent('soapenv:Body|api:FCKLogin|inBean|userName','?');
http := THttp.Create;
// Indicate we want to allow an empty header..
http.UncommonOptions := 'AllowEmptyHeaders';
http.SetRequestHeader('SoapAction','');
resp := THttpResponse.Create;
success := http.HttpStr('POST','http://webservice.unicospa.it:8181/Service.svc/FrontEndService/Farmaclick2010001FCKLogin',xml.GetXml(),'utf-8','text/xml',resp);
if (success = False) then
begin
WriteLn(http.LastErrorText);
Exit;
end;
// A status code = 200 indicates success.
WriteLn('Response status code = ' + resp.StatusCode);
xmlResp := TXml.Create;
xmlResp.LoadXml(resp.BodyStr);
WriteLn('Response body text:');
WriteLn(xmlResp.GetXml());
xml.Free;
http.Free;
resp.Free;
xmlResp.Free;
end;
// ---------------------------------------------------------------------------
begin
try
RunDemo;
except
on E: Exception do
WriteLn('Unhandled exception: ', E.ClassName, ': ', E.Message);
end;
WriteLn;
{$IFDEF MSWINDOWS}
WriteLn('Press Enter to exit...');
ReadLn;
{$ENDIF}
end.