Re: [Lazarus] questioning ARequest: TFPHTTPConnectionRequest :)

2023-02-27 Thread duilio foschi via lazarus
It belongs to TFPHTTPConnectionRequest's grandfather (ancestor of ancestor). Silly of me, I had gone back only one generation! :) Thank you Peppe On Mon, Feb 27, 2023 at 8:23 AM Michael Van Canneyt via lazarus wrote: > > > > On Sun, 26 Feb 2023, duilio foschi via lazarus wrote: > > > my simple

Re: [Lazarus] questioning ARequest: TFPHTTPConnectionRequest :)

2023-02-26 Thread Michael Van Canneyt via lazarus
On Sun, 26 Feb 2023, duilio foschi via lazarus wrote: my simple BE server uses this function to handle all inbound calls: procedure TTestHTTPServer.HandleRequest( var ARequest: TFPHTTPConnectionRequest; var AResponse: TFPHTTPConnectionResponse ); When the call is a POST, I want to read

[Lazarus] questioning ARequest: TFPHTTPConnectionRequest :)

2023-02-26 Thread duilio foschi via lazarus
my simple BE server uses this function to handle all inbound calls: procedure TTestHTTPServer.HandleRequest( var ARequest: TFPHTTPConnectionRequest; var AResponse: TFPHTTPConnectionResponse ); When the call is a POST, I want to read the json payload inside ARequest. I expected to find a pr