I have to create an embedded HTTP server in our application. This must be created for interprocess communication, because the other side can call only WebService.
We don't need to process more requests at once, but I must use the libraries and DB connection from the main thread.
The Delphi version is Seattle, the Indy version is 10 (internal).
As I know the IdHTTPServer uses threads for connections - as formerly. But the new event handler don't pass the Thread directly - so I can't call TThread.Synchronize as N years before. And I didn't find any way to get the thread.
Somewhere I've read that TIdSync or TIdNotify classes could help me. I can't find any complete example to see how.
See this simple code. Is it enough to do my work in main thread?
procedure TForm5.IdHTTPServer1CommandGet(AContext: TIdContext; ARequestInfo: TIdHTTPRequestInfo;
AResponseInfo: TIdHTTPResponseInfo);
begin
FURI := ARequestInfo.URI; // Store the URI for main thread access
FResult := '';
TIdSync.SynchronizeMethod(Self.ProcessIt); // Call sync to process in VCL thread
AResponseInfo.ContentText := FResult; // This variable contains the result
end;
Or I do something wrong?
Thank you for the help!
dd
There is a way to get access to the underlying
TThread
behind aTIdContext
- typecast theTIdContext.Yarn
property toTIdYarnOfThread
and then access itsThread
property, eg:But, you don't actually need that in your situation, because
TThread.Synchronize()
(andTThread.Queue()
) hasclass
method overloads, so you don't need aTThread
object to call it, eg:TIdSync
(andTIdNotify
) can indeed be used instead, and what you have is a good start for that, it just needs to be fleshed out a little more so that access to yourFURI
andFResult
variables is synchronized as well, in case you ever need to handle more than 1 client connection at a time and thus would need to avoid concurrent access to the variables, eg:That being said,
TIdSync
(andTIdNotify
) is deprecated in favor ofTThread
'sclass
method overloads that support anonymous procedures, eg:Alternatively: