Answered
CFXML and Namespace References Order
I am using cfxml top create an xml file to send to a third party.
There are two Namespace references in the xml. The problem is that cfxml apparently alphabetizes the reference order. This results in a "fatal xml error" from the third party I am submitting the xml to.
It's a guess as to the alphabetizing, but CF is definitely switching the references in the resulting xml.
This is what's in my code:
<CFXML variable="MyXML">
<?xml version="1.0"?>
<zzz:aTag xmlns:zzz="http://www.something.com/zzz" xmlns:aaa="http://www.something.com/aaa">
...
...
When I view the resulting xml the namespace reference have switched:
<zzz:aTag xmlns:aaa="http://www.something.com/aaa" xmlns:zzz="http://www.something.com/zzz"
...
...
Anyone know of a way to get CF to do what I tell it?
