Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I made the option of txmlmap all in one true, but I still get 2 different documents, any solution please;
out put:
<?xml version="1.0" encoding="UTF-8"?>
<geocodereponse><result><geometry><location><lat>45.49133</lat><long>-72.312679</long></location></geometry></result></geocodereponse>
<?xml version="1.0" encoding="UTF-8"?>
<geocodereponse><result><geometry><location><lat>45.373436</lat><long>-71.9029483</long></location></geometry></result></geocodereponse>
what i need:
<?xml version="1.0" encoding="UTF-8"?>
<geocodereponse>
<result>
<geometry>
<location>
<lat>45.49133</lat>
<long>-72.312679</long>
</location>
</geometry>
</result>
<result>
<geometry>
<location>
<lat>45.373436</lat>
<long>-71.9029483</long>
</location></geometry>
</result>
</geocodereponse>
Hi,
as you can see from your screenshot (it better than the previous one describe the problem) - you have 2 rows after tRESTClient
it means, you receive not a single XML Document with Loop by location, but 2 independent XML documents, and in this case tXMLMap work as expected
as variant of solution - store data to hash (more than one if need) and prepare output XML after receive all
just split job into 2 subjob