Status/Resolution/Reason: Closed/Fixed/Fixed
Reporter/Name(from Bugbase): Aaron Neff / Aaron Neff (Aaron Neff)
Created: 03/09/2016
Components: Language
Versions: 2016
Failure Type:
Found In Build/Fixed In Build: RC1_v12 / 303894
Priority/Frequency: Major / Some users will encounter
Locale/System: English / Win All
Vote Count: 0
WDDX mangles ordered struct
Repro:
<cfscript>
orderedStruct = [b="b", a="a", c="c"];
cfwddx(action="cfml2wddx", input=orderedStruct, output="serializedStruct");
cfwddx(action="wddx2cfml", input=serializedStruct, output="deserializedStruct");
writeDump(orderedStruct);
writeDump(deserializedStruct);
</cfscript>
Actual result:
{b="b",a="a",c="c"}
{a="a",b="b",c="c"}
Expected result:
{b="b",a="a",c="c"}
{b="b",a="a",c="c"}
----------------------------- Additional Watson Details -----------------------------
Watson Bug ID: 4126385
External Customer Info:
External Company:
External Customer Name: Aaron Neff
External Customer Email: adobelabs@itisdesign.com
External Test Config:
Attachments:
Comments: