Hallo zusammen,
ich versuche Methoden eines Webservices über HTTPS aufzurufen. Da das Zertifikat vom WS-Betreiber selbst signiert wurde, muss ich eine Hilfs-Funktion nutzen.
Der Delphi-Kompiler bringt wir dabei allerdings u.a. den Fehler "Undefinierter Bezeichner: 'THTTPReqResp'"
Delphi-Quellcode:
type
TForm1 = class(TForm)
HTTPRIO1: THTTPRIO;
Label1: TLabel;
procedure CreateForm(Sender: TObject);
procedure BeforePost(const HTTPReqResp: THTTPReqResp; Data: Pointer);
private
...
uses sind:
Delphi-Quellcode:
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, InvokeRegistry, Rio, SOAPHTTPClient, Provisioning, StdCtrls;
Kann mir bitte jemand sagen, warum bei mir die Klasse niucht gefunden wird?
Grüße
LuigiEd