0

What will be the preferred way of converting JSON to XML file? Is it better to use web-service or any Java component? I tried using web-service and still wanted to cross-check if there is any other option to do this.

1 Answers1

0

Convert JSON text contained in string json into an XML node

XmlDocument Xmldoc = JsonConvert.DeserializeXmlNode(json);

Here is the documentation: Json to xml

Manoj Kumar
  • 332
  • 1
  • 7