locations element
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<locations>
<location>
<locationIdentity>...</locationIdentity>
<isLocal>...</isLocal>
<routes>
<route>
<routeType>...</routeType>
<hostname>...</hostname>
<port>...</port>
</route>
<route>
<!--...-->
</route>
<!--...more "route" elements...-->
</routes>
<attributes>
<attribute>
<key>...</key>
<value>...</value>
</attribute>
<attribute>
<!--...-->
</attribute>
<!--...more "attribute" elements...-->
</attributes>
</location>
<location>
<!--...-->
</location>
<!--...more "location" elements...-->
</locations>
Example JSON
{
"location" : [ {
"locationIdentity" : "...",
"isLocal" : false,
"routes" : {
"route" : [ {
"routeType" : "...",
"hostname" : "...",
"port" : ...
}, ... ]
},
"attributes" : {
"attribute" : [ {
"key" : "...",
"value" : "..."
}, ... ]
}
}, ... ]
}