C
C
Create XML with Multiple Same-Tag Children
See more XML Examples
Demonstrates how to create XML where siblings have the identical tags.Chilkat C Downloads
#include <C_CkXml.h>
void ChilkatSample(void)
{
HCkXml xml;
// This example creates the following XML:
// <soap:Envelope>
// <soap:Body>
// <S:AlternatePartyIds>
// <S:Id>123456789</S:Id>
// <S:AssigningPartyId>NationalId</S:AssigningPartyId>
// </S:AlternatePartyIds>
// <S:AlternatePartyIds>
// <S:Id>987654</S:Id>
// <S:AssigningPartyId>DriversLicense</S:AssigningPartyId>
// <S:IssuingState>SD</S:IssuingState>
// </S:AlternatePartyIds>
// </soap:Body>
// </soap:Envelope>
xml = CkXml_Create();
CkXml_putTag(xml,"soap:Envelope");
CkXml_UpdateChildContent(xml,"soap:Body|S:AlternatePartyIds|S:Id","123456789");
CkXml_UpdateChildContent(xml,"soap:Body|S:AlternatePartyIds|S:AssigningPartyId","NationalId");
CkXml_UpdateChildContent(xml,"soap:Body|S:AlternatePartyIds[1]|S:Id","987654");
CkXml_UpdateChildContent(xml,"soap:Body|S:AlternatePartyIds[1]|S:AssigningPartyId","DriversLicense");
CkXml_UpdateChildContent(xml,"soap:Body|S:AlternatePartyIds[1]|S:IssuingState","SD");
printf("%s\n",CkXml_getXml(xml));
CkXml_Dispose(xml);
}