Thread: Write XML issue
View Single Post
  #1  
Old 04-23-2012, 04:29 PM
TOWENS TOWENS is online now
Registered User
 
Join Date: 01-08-2007
Location: Denver
Posts: 5
Write XML issue

I'm trying to write multiple XML elements with the same name using the Write XML action as shown below but it will only create/update 1 FieldData element. Any ideas.

<?xml version="1.0" encoding="utf-8"?>
<QCData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<FieldDataList>
<FieldData>
<FieldName>Field1</FieldName>
<FieldValue>Value1/FieldValue>
</FieldData>
<FieldData>
<FieldName>Field2</FieldName>
<FieldValue>Value2</FieldValue>
</FieldData>
</FieldDataList>
</QCData>
Reply With Quote