JSONToXMLJSONToXML
Serialize JSON aspect to XML
Home > Books > NetKernel API and Services Reference > Accessor Listing > JSON Library > JSONToXML

Rate this page:
Really useful
Satisfactory
Not helpful
Confusing
Incorrect
Unsure
Extra comments:


Module

urn:org:ten60:mod:json

The JSONToXML accessor is exported by the urn:org:ten60:mod:json module. Import this module to gain access to the accessor.

Syntax

URI
active:JSONToXML

ArgumentRulesDescription
operandMandatory A JSON resource to serialize to XML

Example Usage

DPML

<instr>
  <type>JSONToXML</type>
  <operand>some.json</operand>
  <target>var:xml</target>
</instr>

NetKernel Foundation API

req=context.createSubRequest("active:JSONToXML");
req.addArgument("operand", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req);

Purpose

The JSONToXML accessor serializes a JSON resource to XML.

Warning: this accessor makes no warranty that the XML output will be well-formed.

For more details see the JSON guide.

Example

JSONToXML will convert this JSON...

{"root":
	{
		"a": "1",
		"b": "2"
	}
}

into XML...

<root>
  <a>1</a>
  <b>2</b>
</root>
© 2003-2007, 1060 Research Limited. 1060 registered trademark, NetKernel trademark of 1060 Research Limited.