In our company we have done something for json web services. You can use Codeunit-1237-Get Json Structure to parse from json to xml and it will generate you an xml result.
Or there is a DOTNET variable that allows you to turn json to xml document. But first you need to register Json dll to navision for your request. You can download it from offical site.
Example code for Json to xml method
XmlDocument := JsonConvert.DeserializeXNode(FileContent,'xml_Root');
Answers
In our company we have done something for json web services. You can use Codeunit-1237-Get Json Structure to parse from json to xml and it will generate you an xml result.
Or there is a DOTNET variable that allows you to turn json to xml document. But first you need to register Json dll to navision for your request. You can download it from offical site.
Example code for Json to xml method
XmlDocument := JsonConvert.DeserializeXNode(FileContent,'xml_Root');
Thanks for the reply.