I am trying to load the following xml in below and then replace the tokens wrapped in {} with the appropriate values, but I noticed that it complains that {} is an invalid character. Should I just load it as a regular text file? or is there a more simple way to do this?
<?xml version="1.0" encoding="utf-8"?>
<soapenv:Envelope {NAMESPACES}>
<soapenv:Header>
<From>
<SystemId>{FROM_SYSTEM_ID}</SystemId>
<Credential>
<userName>{USERNAME}</userName>
<password>{PASSWORD}</password>
</Credential>
<SourceId />
</From>
<To>
<Address>{ADDRESS}</Address>
</To>
<timeStamp>{TIME_STAMP}</timeStamp>
<echoToken>{ECHO_TOKEN}</echoToken>
<action>{ACTION}</action>
<transactionId>{TRANSACTION_ID}</transactionId>
</soapenv:Header>
<soapenv:Body>
{BODY}
</soapenv:Body>
</soapenv:Envelope>
I believe the {} is only invalid for attributes, but for it is fine for the inner xml of elements.
{}is not part of XML, so use it where you want. – John Saunders Oct 14 '11 at 14:39{}is ever invalid? Is there a particular exception you received when you tried to load that XML? – John Saunders Oct 14 '11 at 14:53{NAMESPACES}placeholder because it's just sitting up there. You would need a syntax likexmlns="{NAMESPACES}"and just replace the entire "attribute" with the set of namespaces. – John Saunders Oct 14 '11 at 15:08