A simple JSON to XML converter.
Part of VFP XML library set.
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
- In development.
A simple JSON to XML converter.
Part of VFP XML library set.
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