Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

Releases for XML Objectifier (X2J) - Convert XML DOM to JSON


XML Objectifier (X2J) - Convert XML DOM to JSON 2.0.1

Minor optimization updates for NodeSets
- NodeSet Class is now exposed for prototype extension

xmlObjectifier - Converts XML DOM to JSON 2.0

This is a completely re-written version of the XML Objectifier, that can be used both as jQuery plug-in and as a Stand-Alone version. New features had been added and documentation is ready.

xmlObjectifier - Converts XML DOM to JSON

- New features
$.xmlToJSON(xml, options)
$.JSONOutputType = { complex: 0, lite: 1 }

- options: nodeHandler (Function(xmlNode)) - this function allows custom handling of nodes before they are added to an output JSON object.
This function will always get xmlNode argument of a node currently being processed. In order to customize your output node, this function must return an object representing a modified node or -1 to skip a node entirely.

Output object looks like this: { Text: "value of a node",
_nodeName: "new name of a node(no spaces)",

_processChildren: true | false,

_processAttributes: true | false }

in addition you can just insert your custom attribute or fields.

xmlObjectifier - Converts XML DOM to JSON 1.0.3

- Fixed a bug where a single node w/o value refused to parse (i.e. )
- Added a RootName property to a JSON object that contains a name of the root node

xmlObjectifier - Converts XML DOM to JSON 1.0.2

Two small fixes has been made that effect processing of SOAP envelopes and/or XML files with namespaces in the node name (i.e. namespace:Nodename, soapenv:Body, etc.)

Change Summary:
- Fixed a small bug that caused SOAP XML to be parsed incorrectly
- Parsed SOAP JSON ignores namespaces, and uses just element names (i.e. soapenv:Body will be converted as Body)

xmlObjectifier - Converts XML DOM to JSON 1.0.1

- Minor bug fixes
- Improved sorting

xmlObjectifier - Converts XML DOM to JSON

This is a stable release of the jqXMLUtils library