Schau mal bitte, ob du damit zum gewünschten Ergebnis kommst:
Antwort := Idhttp1.Post('URL',XML-File,Response);
Zwischen den einzelnen
Indy-Versionen ändert sich ab und an mal was, so dass sie nicht unbedingt abwärtskompatibel sind.
In einem meiner Programm nutze ich folgende Funktion:
Delphi-Quellcode:
function AddQuiqTip(idHTTP : TIdHTTP; sText : String) : String;
var
data: TIdMultiPartFormDataStream;
begin
data := TIdMultiPartFormDataStream.Create;
try
{ add the used parameters for the script }
data.AddFormField('action', 'add');
data.AddFormField('quip', sText);
data.AddFormField('add', 'Add This Quip');
{ Call the Post method of TIdHTTP and read the result into TMemo }
Result := IdHTTP.Post('https://www.xyz.com/quips.cgi', data);
finally
data.Free;
end;
end;