Search Results

1
vote
1answer
2k views

Delphi 2009, Indy 10, TIdTCPServer.OnExecute, how to grab all the bytes in the InputBuffer

Hi I am messing around with the Indy 10 supplied with Delphi 2009 and am having trouble with getting all the data from the IOHandler when OnExecute fires... procedure TFormM …
0
votes
2answers
68 views

TIdTCPServer not reading data from socket sometimes.

Hi I have the following code in the OnExecute of a TIdTCPServer (Delphi 2009 and Indy 10 that came with the installation) which is very similar to other examples on this site; …
0
votes

TIdTCPServer not reading data from socket sometimes.

It looks like your code should look like this; Socket := AContext.Connection.Socket; Socket.CheckForDataOnSource(10); if not Socket.InputBufferIsEmpty then begin Socket.InputBuffe …