Unknown stream format

Hello,

With the RemObjectDataAbstract 10.0.0.1607 and Delphi Delphi 12.3,
On client Apps When I open first time dataset is raised “Unknown stream format”

I atashed a test case

Best regards,
Tiberiu Stoicescu
TestDataAbstract.zip (220.0 KB)

Hi,

update uROEncoding.pas as

function UTF8BytesToString(aValue: TBytes): UnicodeString;
begin
  {$IFDEF UNICODE}
  Result := TEncoding.UTF8.GetString(aValue);
  {$ELSE}
  Result := UTF8Decode(_BytesToString(aValue));
  {$ENDIF}
  // remove UTF16 BOM
  if (PUnicodeChar(Result)[0] = #$FEFF) then
     Result := Copy(Result, 2, Length(Result) - 1);
end;

Logged as bugs://D19531.

bugs://D19531 was closed as fixed.