Is there any way in DataSnap REST, to capture information coming from Headers (GET)?
I researched and found:
var
oWebModule: TWebModule;
sHeader: String;
begin
oWebModule := GetDataSnapWebModule;
sHeader := oWebModule.Request.Content;
end;
However, this content always returns me empty.