Tagged Questions
0
votes
2answers
157 views
UTF-8 response of TIdHTTPServer with Free Pascal
This code starts a HTTP server which listens for requests on port 8080. When compiled with Delphi 2009, the Chinese text is rendered correctly. With Free Pascal 2.6.0 however, the browser displays ...
1
vote
1answer
155 views
How can I give the response file of a universal HTTP request a unique name?
I've developed an HTTP API Server (intended to be called by third-party applications, not necessarily by a web browser) which has one universal call to get (download) any and all types of files by ...
2
votes
1answer
334 views
Indy (Delphi) Http Client and Digest Authentication
I'm trying to communicate with a LAN (http://) server that needs digest authentication.
uses IdHttp, IdAuthenticationDigest;
...
begin
IdHttp1 := TIdHttp.Create(nil);
try
...
1
vote
1answer
600 views
Using IdHTTP1.Get with Delphi and Indy 9/10 on a specific web server returns exception
I've a problem receiving a favicon.ico from a specific web server using Delphi and Indy 9/10. Other servers do work fine. The problem is not with this web server, as wget command line utility gets the ...
2
votes
1answer
191 views
Indy HTTP server on Linux returns only last character of response text
Environment: Ubuntu 12.04 LTS, Indy 10.5.9 rev 4885, Lazarus 1.0.4 / FPC 2.6.0.
With my simple TIdHTTPServer test program, the web browser only displays the last character ('!') instead of the of the ...
0
votes
2answers
299 views
HTTP Post text to SMS service getting %20 in text Delphi 2007
I'm using Indy to do a Post to an SMS service that will send the SMS, but the SMS text ends up on my phone with %20 instead of spaces, here is the code:
url,text:string;
IdHTTP1: TIdHTTP;
...
2
votes
1answer
1k views
Getting WebDAV content via Delphi and Indy 10 TIdHTTP
Looking on the Delphi newsgroups, it appears the best way to GET content from a WebDAV server is to use the built in TIdHTTP.Get. While doing this, the result is HTML and I just want to make sure ...
3
votes
3answers
2k views
Delphi. Show gotten with idHTTP.Get Unicode text in multilanguage Windows
I need your help. Please help me.
I have Delphi 2010
I try to idHTTP.Get a file with Unicode text (Russian) from site into MemoryStream on English version of Windows 7.
Then I load this ...