JSONFromXMLJSONFromXML
Create JSON aspect from XML
Home > Books > NetKernel API and Services Reference > Accessor Listing > JSON Library > JSONFromXML

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


Module

urn:org:ten60:mod:json

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

Syntax

URI
active:JSONFromXML

ArgumentRulesDescription
operandMandatory An XML resource to convert to JSON

Example Usage

DPML

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

NetKernel Foundation API

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

Purpose

The JSONFromXML accessor converts an XML document to JSON. The accessor returns an IAspectJSON resource.

For more details see the JSON guide.

Example

JSONFromXML will convert this XML document...

<root>
  <a>1</a>
  <b>2</b>
</root>

into the following JSON object...

{"root":
	{
		"a": "1",
		"b": "2"
	}
}
© 2003-2007, 1060 Research Limited. 1060 registered trademark, NetKernel trademark of 1060 Research Limited.