-
#68 introduced simple API for JSON array queries. It would be nice to add the same functionality for JSON object.
```
JsonObject in = ...
Collector col = JsonCollectors.toJsonObject();
JsonObject out…
-
It's great to be able to easily convert an OSNotification or OSNotificationPayload to a JSONObject or JSON string via toJSONObject() (formerly the "stringify" methods). However, without the ability to…
-
I am using org.json.XML.toJSONObject to convert XML string to JSON string. One of the XML input element with value of .08 was converted to ".08" which is a string but I am expecting 0.08 (a float).
…
-
Currently, we use `MoshiHelper` to dump and duplicate the JSON stream in order to lookaround critical information about deserialization (namely `type`).
addresses the problem in streaming and intr…
-
I'm using Jersey 2.8 to generate JSONP with JsonStructur (super type for the two structured types in JSON JsonObject and JsonArray) as return type. Unfortunately the generated JSONP is syntactically i…
-
I'm using Jersey 2.8 to generate JSONP with JsonStructur (super type for the two structured types in JSON JsonObject and JsonArray) as return type. Unfortunately the generated JSONP is syntactically i…
-
Hi everyone,
when I call `XML.toJSONObject("blah")` I got empty JSONObject without any error even if input is not a valid XML.
In my opinion this conversion should throw some parsing error or am…
-
Found by @deepakunni3
Steps:
- switch to Java 8 and run
- click on bookmark (single one is fine)
- select "Exon" projection
- see following error which kills the server
```
Exon","sequenceList":[{"…
-
Currently, there is no standard on JSON queries. It is not our goal to propose any such standard. Rather, our goal is to encourage using JDK's stream operations for JSON queries, and to provide help t…
-
When doing _session.put("key", value)_ code presumes the _value_ is always _String_.
To enable more Object types edit _toJsonObject()_ and _fromJsonObject()_ functions in _SessionImpl_.