Please help me to correct Atom feed below for execution result for bulk upload
Accepted answer
Paul Slauenwhite (8.4k●1●2)
| answered Apr 23 '19, 6:11 a.m.
FORUM MODERATOR / JAZZ DEVELOPER edited Apr 23 '19, 6:12 a.m. You have multiple executionresult elements in one content element. You should have:
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<entry>
<id>resource ID</id>
<content>
resource XML
</content>
</entry>
<entry>
<id>resource ID</id>
<content>
resource XML
</content>
</entry>
</feed>
Sunil Lengare selected this answer as the correct answer
Comments
Sunil Lengare
commented Apr 24 '19, 12:00 a.m.
Thank you Very much Paul, that was exactly what was the problem, I corrected it and its working fine now, thank you so much!! |
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.