Questions tagged [indy-9]

Indy 9 is a reference to a specific version of Indy.

Indy 9 is a reference to a specific version of .

57 questions
10
votes
5 answers

MultiCast Messages to multiple clients on the same machine

Im trying to write a server/service that broadcasts a message on the lan ever second or so, Kind of like a service discovery. The message needs to be received by multiple client programs that could be on the same machine or different …
Christopher Chase
  • 2,840
  • 6
  • 36
  • 57
7
votes
2 answers

how to upload file to dropbox via Delphi 7?

I try to upload file into dropbox. I use dropbox api https://www.dropbox.com/developers/reference/api#files-POST procedure TDropbox.Upload2; const URL = 'https://api-content.dropbox.com/1/files/dropbox/'; var Response: String; Params:…
barbaris
  • 514
  • 8
  • 25
6
votes
3 answers

Who's setting TCP window size down to 0, Indy or Windows?

We have an application server which have been observed sending headers with TCP window size 0 at times when the network had congestion (at a client's site). We would like to know if it is Indy or the underlying Windows layer that is responsible…
Francesca
  • 21,452
  • 4
  • 49
  • 90
5
votes
1 answer

Migrating from Indy 9 to 10 with Delphi, TIdSchedulerOfThreadPool initialization

I'm in the process of updating a Delphi app from Indy 9 to Indy 10. It's quite painful, as apparently a lot has changed. I'm stuck at one step. Here is the old code (working with Indy 9): A Thread Pool is created and every thread of the pool is…
Casady
  • 1,426
  • 3
  • 19
  • 39
5
votes
2 answers

Indy 9 + Delphi 2007 latest SSL Libraries available?

When using Delphi 2007 along with Indy 9, what are the latest OpenSSL libraries that can be loaded and where are they available?
Darian Miller
  • 7,808
  • 3
  • 43
  • 62
4
votes
1 answer

Controlling a long running and critical ISAPI process

Scenario: Client makes ISAPI call with POST to IIS 7.5 server - the call will generate mission critical output to be distributed to numerous users. (using Delphi XE with Indy 9 HTTP client in this case); ISAPI process takes a LONG TIME to complete…
Vector
  • 10,879
  • 12
  • 61
  • 101
4
votes
1 answer

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 file correctly. here is the output from…
Casady
  • 1,426
  • 3
  • 19
  • 39
4
votes
1 answer

Indy TCP - Read data in a loop

A TCP server is sending data frames continuosly every 8ms. I want to program a client able to receive these data frames. Is there any procedure in Indy 9 to know if there is data available in the buffer? My current programs is the following (I am…
user1361263
  • 101
  • 2
  • 5
  • 11
3
votes
2 answers

Handle PUT and DELETE requests in TIdHTTPServer in Delphi 7

Is it possible to handle PUT and DELETE requests in TIdHTTPServer (Indy 9, Delphi 7)? I have tried OnCommandGet but it handles only GET and POST requests. Also I have tried OnCommandOther event. It handles PUT and DELETE methods but I can not access…
barbaris
  • 514
  • 8
  • 25
3
votes
2 answers

Is Indy 9 compatible with Lazarus/Free Pascal

I'm doing feasibility analysis about porting a delphi 7 app to Free Pascal. Does Indy 9 work on Free Pascal? Do you need a special build or just the latest Indy 9 from Indy's svn repository? Or would I have to upgrade to Indy 10 to get the app…
Jessica Brown
  • 8,222
  • 7
  • 46
  • 82
3
votes
1 answer

Adding attachments to E-mail bound for Evernote E-mail address defeats HTML content type declaration with Indy TIdSMTP component

I have a Delphi 6 application that generates E-mails that I send to my Evernote E-mail address, a special E-mail address for sending documents via E-mail so that they are stored automatically into my Evernote account. I have successfully created…
Robert Oschler
  • 14,153
  • 18
  • 94
  • 227
2
votes
1 answer

Indy IdHTTPServer GET response parameters randomly missing

I'm writing a Delphi-based Windows server for a tablet-based HTML client. Most files are served out unprocessed, as you would expect of a web server, but a handful of special keywords are being interpreted as special commands that interface with…
TobyD
  • 161
  • 1
  • 6
2
votes
1 answer

Delphi 7, indy9 tcp audio streaming

I am trying to make an application that use audio streaming through TCP connection, Using Delphi 7 and Indy9. More clearly, How i can stream input from Client microphone and send it to (TCP or HTTP Server)? Consider real time. Thank you
bestyasser
  • 103
  • 1
  • 11
2
votes
0 answers

Slow responses to TIdHTTP POSTs

I am investigating a problem with a legacy executable, written in Delphi 5, utilising Indy 9. Components in use: TIdHTTP, TIdConnectionIntercept & TIdSSLIOHandlerSocket. The problem the app is presently experiencing is slow responses to TIdHTTP…
CoastalB
  • 695
  • 4
  • 15
2
votes
1 answer

Indy 9 SMTP Send with TLS causing crash

I have a strange issue sending an email via gmail. I am using Delphi 7 and Indy 9 working on Windows 7 Professionel 32-bit on a VirtualBox (4.2) Since Indy 9 doesn't support TLS out of the box I have to send the STARTTLS command myself. This works…
fuchs777
  • 993
  • 1
  • 14
  • 30
1
2 3 4