The "Request.
HeaderText" property is used to assign the complete HTTP header in a single statement.
What you should do instead, if you only want to assign some HTTP header values, is this:
dr1.Request
['Authorization'] := 'secret blablabla'; // set the "Authorization" HTTP header
dr1.Request.Method := 'POST'; // set the HTTP method, which is also part of the HTTP header
dr1.Request.FileName:='/get'; // set the file name, which is part of the HTTP header
dr1.Request.Host:= '
www.mysite.com'; // set the "Host" HTTP header
dr1.Post();
Best Regards,
Danijel Tkalcec