Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Delphi DLL) SOAP Request to fseservicetest.sanita.finanze.it with Basic AuthenticationDemonstrates sending a SOAP request to fseservicetest.sanita.finanze.it with Basic Authentication.
uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Http, HttpRequest, HttpResponse, Xml; ... procedure TForm1.Button1Click(Sender: TObject); var http: HCkHttp; xml: HCkXml; success: Boolean; soapEnvelope: PWideChar; domain: PWideChar; path: PWideChar; req: HCkHttpRequest; resp: HCkHttpResponse; xmlResp: HCkXml; begin // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. http := CkHttp_Create(); xml := CkXml_Create(); success := False; // Create the SOAP envelope... CkXml_putTag(xml,'soapenv:Envelope'); CkXml_AddAttribute(xml,'xmlns:soapenv','http://schemas.xmlsoap.org/soap/envelope/'); CkXml_AddAttribute(xml,'xmlns:stat','http://statoconsensirichiesta.xsd.fse.ini.finanze.it'); CkXml_AddAttribute(xml,'xmlns:tip','http://tipodatistatoconsensi.xsd.fse.ini.finanze.it'); CkXml_UpdateChildContent(xml,'soapenv:Header',''); CkXml_UpdateChildContent(xml,'soapenv:Body|stat:StatoConsensiRichiesta|stat:IdentificativoUtente','XXXXXXAAABBBCCC'); CkXml_UpdateChildContent(xml,'soapenv:Body|stat:StatoConsensiRichiesta|stat:pinCode','...'); CkXml_UpdateChildContent(xml,'soapenv:Body|stat:StatoConsensiRichiesta|stat:IdentificativoOrganizzazione','999'); CkXml_UpdateChildContent(xml,'soapenv:Body|stat:StatoConsensiRichiesta|stat:StrutturaUtente','123456789'); CkXml_UpdateChildContent(xml,'soapenv:Body|stat:StatoConsensiRichiesta|stat:RuoloUtente','ZZZ'); CkXml_UpdateChildContent(xml,'soapenv:Body|stat:StatoConsensiRichiesta|stat:ContestoOperativo',''); CkXml_UpdateChildContent(xml,'soapenv:Body|stat:StatoConsensiRichiesta|stat:IdentificativoAssistitoGenitoreTutore',''); CkXml_UpdateChildContent(xml,'soapenv:Body|stat:StatoConsensiRichiesta|stat:PresaInCarico','true'); CkXml_UpdateChildContent(xml,'soapenv:Body|stat:StatoConsensiRichiesta|stat:TipoAttivita','READ'); CkXml_UpdateChildContent(xml,'soapenv:Body|stat:StatoConsensiRichiesta|stat:IdentificativoAssistitoConsenso','ABCDEFGHIJKLM'); soapEnvelope := CkXml__getXml(xml); domain := 'fseservicetest.sanita.finanze.it'; path := '/FseInsServicesWeb/services/fseStatoConsensi'; req := CkHttpRequest_Create(); CkHttpRequest_putHttpVerb(req,'POST'); CkHttpRequest_putSendCharset(req,False); CkHttpRequest_AddHeader(req,'Content-Type','application/soap+xml; charset=utf-8'); CkHttpRequest_putPath(req,path); success := CkHttpRequest_LoadBodyFromString(req,soapEnvelope,'utf-8'); // User name and Password for Basic Authentication CkHttp_putLogin(http,'XXXXXXAAABBBCCC'); CkHttp_putPassword(http,'MYPASSWORD'); resp := CkHttp_SynchronousRequest(http,domain,443,True,req); if (CkHttp_getLastMethodSuccess(http) = False) then begin Memo1.Lines.Add(CkHttp__lastErrorText(http)); Exit; end; xmlResp := CkXml_Create(); success := CkXml_LoadXml(xmlResp,CkHttpResponse__bodyStr(resp)); Memo1.Lines.Add(CkXml__getXml(xmlResp)); CkHttpResponse_Dispose(resp); CkHttp_Dispose(http); CkXml_Dispose(xml); CkHttpRequest_Dispose(req); CkXml_Dispose(xmlResp); end; |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.