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
…
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:…
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…
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…
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…
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…
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…
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…
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…
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…
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…
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
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…
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…