Skip to content

Files

Latest commit

551f5b6 · Jun 23, 2019

History

History
24 lines (17 loc) · 420 Bytes

json-to-xml.md

File metadata and controls

24 lines (17 loc) · 420 Bytes

JsonToXML

A simple JSON to XML converter.

Part of VFP XML library set.

Usage

m.jx = createobject("JsonToXML")
m.xml = m.jx.convert(m.jsonString, "root")
if isnull(m.xml)
  ? m.jx.ParseError, '@', m.jx.ParsePosition
else
  ? m.xml.xml
endif

Status

  • In development.

Dependencies