Hi, we are using RestDataSource, and we noticed that you removed a tag from the post add/update XML:
Taken from the 8.1 reference manual:
Taken from the 8.2 reference manual:
As you see, the countryDS tag is missing. Is there a way to switch back to the old XML format, or do we have to update all our backend procedures?
Taken from the 8.1 reference manual:
Code:
<request>
<data>
<countryDS>
<countryCode>US</countryCode>
<countryName>Edited Value</countryName>
<capital>Edited Value</capital>
<continent>Edited Value</continent>
</countryDS>
</data>
<dataSource>countryDS</dataSource>
<operationType>update</operationType>
</request>
Code:
<request>
<data>
<countryCode>US</countryCode>
<countryName>Edited Value</countryName>
<capital>Edited Value</capital>
<continent>Edited Value</continent>
</data>
<dataSource>countryDS</dataSource>
<operationType>update</operationType>
</request>
Comment