XML/JSON Array problem since new builder version
Hey there,
i just encountered a major problem with the new builder. In the "old" version you could just check a checkbox for xml files saying "its an array".
since this function is missing, and the builder itself detects what is an array, it is not working..
This is my example XML:
code
<?xml version="1.0" encoding="ISO-8859-1"?>
<froot>
<wrapper>
<farray>
<fhersteller>BRAND</fhersteller>
<fname>Article A</fname>
</farray>
<farray>
<fhersteller>BRAND</fhersteller>
<fname>Article B</fname>
</farray>
<farray>
<fhersteller>BRAND</fhersteller>
<fname>Article C</fname>
</farray>
</wrapper>
</froot>
/code
This is what it looks like in the builder, after creating a response.
Then, as usual, I got the mapping done (just as simple here, to add "i" items)
But when I test, just nothing happens.
With the same example and the old builder, everything works fine.
Any ideas?
Thank you!