Skip to main content
If the context data contains an xml string it can be casted to usable data with this mapper. If for example a JSON response from a webserver contains a field with xml data it can be converted to usable key value data with this deserializer.

Fields

Automatically type cast values (checkbox) Disabling automatic type cast will map items one-to-one

Sample data

Input data
<note> 
    <to>Tove</to>
    <from>Jani</from>
    <heading>Reminder</heading>
    <body>Don't forget me this weekend!</body> 
</note> 
Output data
{
    "to": "Tove",
    "from": "Jani",
    "heading": "Reminder",
    "body": "Don't forget me this weekend!"
}