OSD llsdOne = OSD.FromUri(uriOne[0]);
String sUriOne = NotationalLLSDOSDParser.SerializeLLSDNotation(llsdOne);
// System.out.println("sUriOne: " + sUriOne);
OSD llsdOneDS = NotationalLLSDOSDParser.DeserializeLLSDNotation(sUriOne);
Assert.assertEquals(OSDType.URI, llsdOneDS.getType());
Assert.assertEquals(uriOne[0], llsdOneDS.asUri());
URI uriTwo[] = new URI[1];
Utils.tryParseUri("test/test/near/the/end?test=1", uriTwo);
OSD llsdTwo = OSD.FromUri(uriTwo[0]);