![]()  | 
  
Chilkat  HOME  Android™  AutoIt  C  C#  C++  Chilkat2-Python  CkPython  Classic ASP  DataFlex  Delphi DLL  Go  Java  Node.js  Objective-C  PHP Extension  Perl  PowerBuilder  PowerShell  PureBasic  Ruby  SQL Server  Swift  Tcl  Unicode C  Unicode C++  VB.NET  VBScript  Visual Basic 6.0  Visual FoxPro  Xojo Plugin
 
      (Delphi DLL) Duplicate TLS 1.2 SOAP Request that uses .NET HttpWebRequestThis example shows how to duplicate a SOAP request that uses .NET's HttpWebRequest and requires TLS 1.2. 
        string xmlRequest = "...envelope..."
        System.Net.ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;
        string url = "https://www3.gsis.gr/webtax2/wsgsis/RgWsPublic/RgWsPublicPort?WSDL";
        HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url);
        req.Method = "POST";
        req.ContentType = "text/xml;charset=UTF-8";
        byte[] reqBytes = new System.Text.UTF8Encoding().GetBytes(xmlRequest);
        req.ContentLength = reqBytes.Length;
        try {
            using (System.IO.Stream reqStream = req.GetRequestStream()) {
                reqStream.Write(reqBytes, 0, reqBytes.Length);
                reqStream.Flush();
                reqStream.Close();
            }
        } catch (Exception ex) {
            actionLogger.AddError(ex.Message, null);
            actionLogger.Validate();
        }
        string xmlResponse = null;
        using (HttpWebResponse resp = (HttpWebResponse)req.GetResponse()) {
            try {
                using (System.IO.StreamReader sr = new System.IO.StreamReader(resp.GetResponseStream())) {
                    xmlResponse = sr.ReadToEnd();
                    sr.Close();
                }
            } catch (Exception ex) {
                actionLogger.AddError(ex.Message, null);
                actionLogger.Validate();
            } finally {
                resp.Close();
            }
        }
Note: This example requires Chilkat v11.0.0 or greater. 
 uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Http, HttpRequest, HttpResponse; ... procedure TForm1.Button1Click(Sender: TObject); var success: Boolean; http: HCkHttp; req: HCkHttpRequest; xmlRequest: PWideChar; resp: HCkHttpResponse; xmlResponse: PWideChar; begin success := False; // This example assumes Chilkat HTTP to have been previously unlocked. // See Global Unlock Sample for sample code. http := CkHttp_Create(); req := CkHttpRequest_Create(); CkHttpRequest_putHttpVerb(req,'POST'); CkHttpRequest_putContentType(req,'text/xml'); CkHttpRequest_putSendCharset(req,True); CkHttpRequest_putCharset(req,'utf-8'); CkHttpRequest_putPath(req,'/webtax2/wsgsis/RgWsPublic/RgWsPublicPort?WSDL'); xmlRequest := '...SOAP envelope...'; CkHttpRequest_LoadBodyFromString(req,xmlRequest); CkHttp_putFollowRedirects(http,True); // Chilkat will automatically offer TLS 1.2. It is the server that // chooses the TLS protocol version. Assuming the server wishes to use // TLS 1.2, then that is what will be used. resp := CkHttpResponse_Create(); success := CkHttp_HttpSReq(http,'www3.gsis.gr',443,True,req,resp); if (success = False) then begin Memo1.Lines.Add(CkHttp__lastErrorText(http)); Exit; end; xmlResponse := CkHttpResponse__bodyStr(resp); Memo1.Lines.Add(xmlResponse); CkHttp_Dispose(http); CkHttpRequest_Dispose(req); CkHttpResponse_Dispose(resp); end;  | 
  ||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.