Query parameters on ISAPI and HttpApi

Hi

I have Delphi Tokyo + RO 9.5.0.1387.
I converted a RO + HTTPAPI service into ISAPI .dll and I found that the query parameters are ignored,

To work I changed uROWebBrokerServer.pas line 422

function TROWebBrokerServer.Get_QueryString: string;
var
  lStart: integer;
begin
  lStart := Pos('?',GetPathInfo);
  if lStart > 0 then
    Result := Copy(GetPathInfo, lStart+1, Maxint)
  else
    Result := Request.query;  //<= before :=''
end;

Is it ok?

Pierantonio

Thanks, logged as bugs://81146

bugs://81146 got closed with status fixed.