On Sun, 22 Jul 2018 10:41:23 +0200 (CEST), Michael Van Canneyt via Lazarus <lazarus@lists.lazarus-ide.org> wrote:
>That is because you cannot pass the array as a var argument. Just remove the >var, for a dynamic array it is not required anyway. I did so and the compile error disappeared. However, now that there are no compile time errors instead I get a runtime exception inside the call to ObjectToJSONString here: function TConfigCommHandler.ConfigAsJSON(RC: TEspConfiguration): string; {Create a JSON verson of the configuration record} var JS: TJSONStreamer; begin JS := TJSONStreamer.Create(NIL); try JS.Options := JS.Options + [jsoTStringsAsArray]; Result := JS.ObjectToJSONString(RC); finally JS.Free; end; end; The Exception message is: ' : Unsupported property kind for property: "addr"' So it is still not supported.... -- Bo Berglund Developer in Sweden -- _______________________________________________ Lazarus mailing list Lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus