Details
-
Task
-
Resolution: Fixed
-
Major - P3
-
None
-
None
-
None
-
5
-
Sprint Xzibit, Sprint Young Dre The Truth, Sprint Z
Description
Instead of extracting the data as a string, we need to extract the data as bytes so that we can generate the correct output language binary data.
Java, for example, has only signed bytes and must be constructed with:
new BsonBinary(new byte[] {4, 6, 4, -3, -128, 0, 127}); |