Questions tagged [idhttp]

This is the Indy component for HTTP requests.

TIdHTTP is a component of the Internet Direct (aka "Indy") open source library for performing HTTP requests. The component can handle redirects, authentication, and data retrieval all by itself.

IO Handlers can be attached for SSL, streaming, or custom designed IO.

268 questions
0
votes
1 answer

delphi idhttp post related question

im new to delphi. and also almost new to programming world. i was made some simple post software which using idhttp module. but when execute it , it not correctly working. this simple program is check for my account status. if account login…
paul
  • 327
  • 1
  • 7
  • 24
0
votes
1 answer

Delphi idhttp broken characters

I'm working on Delphi XE5 and Getting XML from server by using IDHTTP. Getting XML works fine but there are some broken character. The character is '•' (Bullet point). others are fine but the bullet point is broken. I created IDHTTP like…
Kevin Son
  • 15
  • 2
  • 6
0
votes
1 answer

Delphi: how to gracefully terminate a thread which uses IdHTTP during a connection timeout?

The question is about HTTP get implemented in a thread using IdHTTP. I want to terminate the thread gracefully if needed. For this purpose I check the Terminated property periodically within the HTTPWork event of IdHTTP. If the the terminate…
0
votes
1 answer

Indy 10.6 - idHTTP 100% CPU usage when connecting to Network Stream

I was using Indy 10.5 and several older versions for years. In order to support HTTP Digest Authentication I have downloaded the latest version from their SVN. This is fixing a HTTP Digest Authentication issue I was having... The problem is the CPU…
Schneck
  • 73
  • 5
0
votes
1 answer

MSVCR110.dll missing on Win 8.1 needed for TIdHTTP

In Delphi XE2, I use Indy TIdHTTP to make a http connection. In Windows 7 it works perfectly. But now I have started the program on a Windows 8.1 computer and when trying to connect (which in Windows 7 works perfectly) I get an error message from…
user1580348
  • 5,721
  • 4
  • 43
  • 105
0
votes
0 answers

How to set TIdHTTP time-out?

In Delphi XE2, when using TIdHTTP.Get, how can I set the connection time-out? (For example, to time-out when the computer is not physically connected to the Internet). I have tried to set the connection time-out with the ConnectTimeout and…
user1580348
  • 5,721
  • 4
  • 43
  • 105
0
votes
2 answers

Delete event in google calendar with Delphi

I need to delete an event, what I do is save the ID of the event in a database and then use that url thttpid.delete to remove it, but I get an error 402 forbidden Code= 'XXXXxxXXXxx' // ClientLogin…
0
votes
1 answer

HTTP 302 - Not found parameter GSessionID - Google Calendar

I need help . I want to create events on google calendar with a desktop application , when the parameters sent url = 'https://www.google.com/calendar/feeds/emaill%40gmail.com/private/full'; and then add xml where this event to create createXML :=…
0
votes
1 answer

Create event in google calendar ClientLogin - Delphi language

I have trouble to create an event in google , I'm using google manuals that are in your same website , when running the code CreateXML : = TStringList.Create ;   CreateXML.Add (   ' ' # 13 # 10…
0
votes
1 answer

How to GET (i.e read) https response via idHTTP. Typically REST authorization

I need to authorize via link "https://mysite.sexy/sessionid?login=abc&password=abc" and I got TidHttp and TIdSSLIOHandlerSocketOpenSSL connected both. I send a query: http.get("https://mysite.sexy/sessionid?login=abc&password=abc"); but instead of…
notricky
  • 179
  • 1
  • 2
  • 18
0
votes
1 answer

Trouble when try send HTTP multiple files in same field (Delphi)

I'm creating a project in Delphi for upload multiple files to a webserver, but not up more the one file on same field like on simple form php. Below my Delphi code: procedure Http_arquivos; var i: integer; arquivos: array [0..6] of…
user3343424
0
votes
1 answer

How to uplaod a file in chunks using indy?

I am getting problem in uploading files using "OpenDrive API". I can connect and do other stuffs. Here is the developer api:OpenDrive Api Using Http Analyzer I can see operation like Createupload, Openupload and Closeupload but I observe that there…
Rabi Jayasawal
  • 441
  • 1
  • 9
  • 18
0
votes
0 answers

Delphi XE5 Android IdHTTP app self closing

I wrote an android application that uses the component IdHTTP. The problem arises when the eighteenth procedure call. var Form2: TForm2; XmlS: TStringlist; MemoryS: TMemoryStream; Host: string; IdHTTP: TIdHTTP; i: integer; response:…
Jaszczomp
  • 1
  • 1
0
votes
0 answers

IdHTTP->ConnectTimeout works in Windows 7, does not work on XP

Using Embarcadero C++ Builder 2010, I'm trying to detect specific web server devices connected to a network. I'm interrogating those devices by calling a CGI function using TIdHTTP and analyzing the answer on a range of IP address. I am using…
durje
  • 135
  • 1
  • 2
  • 10
0
votes
1 answer

Idhttp post form, get the message: Object reference not set to an instance of an object

I get this message "Object reference not set to an instance of an object" from an asp.net site after posting form by Http Post method (idhttp) but I don't meet this message if I submit by a browser. Why? I compare parameters, there are no…