Hi,
ich versuche schon seit 3 Tagen eine PHP Seite über die Post Funktion von IndyHttp aufzurufen, bekomme aber ständig die Fehlermeldung "IOHandler value is not valid".
Bitte sagt mir, was ich falsch mache...
Delphi-Quellcode:
procedure TForm1.Button8Click(Sender: TObject);
var
data: TIdMultiPartFormDataStream;
begin
data := TIdMultiPartFormDataStream.Create;
try
{ add the used parameters for the script }
{ Daten für UPS Login:}
{ data.AddFormField('sret', 'http://www.ups.com/content/de/de/index.jsx');
data.AddFormField('uret', 'http://www.ups.com/content/de/de/index.jsx');
data.AddFormField('userid', 'smartmod');
data.AddFormField('password', 'xxxxxxx'); }
{ Daten für Dresnder Bank Login }
data.AddFormField('identifier', '12345678');
data.AddFormField('lqp', '123456');
{ Call the Post method of TIdHTTP and read the result into TMemo }
Memo1.Lines.Text := IdHTTP1.Post('https://www1.dresdner-privat.de/servlet/P/SSA_MLS_PPP_INSECURE_P/pinLogin.do?', data);
finally
data.Free;
end;
end;
Danke schonmal an alle!