JKI-JSON-Serialization icon indicating copy to clipboard operation
JKI-JSON-Serialization copied to clipboard

JSON Serialization & Deserialization Library for LabVIEW

Results 14 JKI-JSON-Serialization issues
Sort by recently updated
recently updated
newest added

I noticed that empty multidimensional arrays are incorrectly serialized. They are serialized as just one pair of square brackets regardless of the array dimension (tried 2D and 3D). This results...

If the data matches a json format, it should still be able to parse right? I am having an issue where the data I am parsing looks like this when...

Example VI: [JSON Test ignoring single variant in a cluster.vi.zip](https://github.com/JKISoftware/JKI-JSON-Serialization/files/4199218/JSON.Test.ignoring.single.variant.in.a.cluster.vi.zip) See [original bug report on JKI forums](https://forums.jki.net/topic/3091-json-ignoring-single-variant-in-a-cluster/). Notice how the "bridge_data" (variant that's inside the cluster) does not show up...

bug

Trying to deserialize a timestamp within a cluster within an array within a cluster: ![image](https://user-images.githubusercontent.com/1074619/51551028-c1dbbb80-1e54-11e9-8577-25b06475ad99.png) Results in an empty array of variants: ![image](https://user-images.githubusercontent.com/1074619/51551116-efc10000-1e54-11e9-9048-7c312755e552.png)

For example: 2647141 stored as a ‘single float’ becomes “2.64714E+6” in the JSON string, resulting in loss of precision. Changing the formatting of floats and fixed point types to %#g...

This library is not able to deserialize JSON containing objects in which: - one property is set to an empty object - at least one other property exists, set to...

Version 1.1.10.37 For fun, I unflattened the convoluted document from my comment in #26: ``` { "": { "": [ { "": "", "txDefinition": { "repeatRate": 0, "canPort": 0, "messageId":...

Underneath the JKI JSON utility it uses LV flatten/unflatten from JSON primitive. Unfortunately, the unflatten from JSON primative has a bug that it truncates the input string when it hits...

Create new optional input for defining the source of the JSON String being parsed, so that the filename/URL can be inserted into the error message. I intend to create another...

JSON-Deserializer has terrible error messages, very difficult to debug errors on json file loads. For example, for a trivial json string like this: {"str": Hello World!}, the error message generated...