I am working on a Demo Project. I am using Delphi XE2 with Indy 10 Components without TWebBrowser. I have a URL of webpage (Flight Search) on which i need to input two values(cities) and on Search button click, get result as response webpage.
Here is an example of the code i am using:
procedure TForm1.Button1Click(Sender: TObject);
Var
aStream : TStringStream;
data : TIdMultiPartFormDataStream;
begin
aStream := TStringStream.Create;
data := TIdMultiPartFormDataStream.Create;
try
with IdHTTP1 do
begin
data.AddFormField('DEP_PORT', 'Basel');
data.AddFormField('ARR_PORT', 'Gaziantep');
Request.UserAgent := 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko/20100101 Firefox/18.0';
Request.AcceptLanguage := 'en-US,en;q=0.5';
Request.Connection := 'keep-alive';
Request.Accept := 'text/html';
Request.ContentType := 'application/x-www-form-urlencoded';
IOHandler := SSL;
try
Post('https://sun.sunexpress.com.tr/web/RezvEntry.xhtml?LANGUAGE=EN', data, aStream);
except
on E: Exception do
showmessage('Error encountered during POST: ' + E.Message);
end;
end;
Memo1.Lines.Add(aStream.DataString);
except
end;
end;
when I post the parameters on the URL (https://sun.sunexpress.com.tr/web/RezvEntry.xhtml?LANGUAGE=EN), i am unable to get the result webpage. on Post, i get the current page HTML code. How could i get the result web page in response? Please help me.
SSLobject configured. – TLama Jan 24 at 15:30Refererrequest header to be the URL of the Flight Search page. There are many factors to submitting HTML forms, which are hard to diagnose with the limited information you have provided. – Remy Lebeau Jan 24 at 21:38Request.ContentTypewhen posting aTIdMultipartFormDataStream. It will just overwrite the value with its own. – Remy Lebeau Jan 24 at 21:39