Tcl
Tcl
Create XML with Multiple Same-Tag Children
See more XML Examples
Demonstrates how to create XML where siblings have the identical tags.Chilkat Tcl Downloads
load ./chilkat.dll
# 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>
set xml [new_CkXml]
CkXml_put_Tag $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"
puts [CkXml_getXml $xml]
delete_CkXml $xml