drpdrp

Results 3 comments of drpdrp

Hi [alexvazquez](https://github.com/alexvazquez), try this code, it worked for me: ```c# serviceBuilder.AddService(serviceOptions => { serviceOptions.DebugBehavior.HttpsHelpPageEnabled = true; serviceOptions.BaseAddresses.Add(new Uri("https://localhost/corewcfservice/Util.svc")); }); serviceBuilder.AddServiceEndpoint(customBinding, string.Empty); ``` you should now be able to hit the...

The expected XML is based solely on running this code and result being: ``` var json = """ { "test": [["nested array"]], } """; var xDocument = JsonConvert.DeserializeXNode(json, "root", false);...

So, it turns out, Newtonsoft.Json has support for roundtrip of nested arrays, which works with **writeArrayAttribute** set to **true** and there is a test for it [here](https://github.com/JamesNK/Newtonsoft.Json/blob/bd0773b8f3b948f47840886c2b3f28b9c8bd5333/Src/Newtonsoft.Json.Tests/Converters/XmlNodeConverterTest.cs#L1652). I have updated...