Ok, but what's the big idea? If the structure is to be exported from CF to JS, it does not really matter, but in my case the data comes from JS, is processed by CF and then return to JS. IF the keys have changed, the rest of the program simply does not recognizes them any more.
For instance, I have simplified the structure I have to this:
<wddxPacket version='1.0'><header/><data><array length='1'><struct><var name='tableLeft'><number>0</number></var><var name='tableRight'><number>1</number></var></struct></array></data></wddxPacket>
This is what is stored in the database, with JS variables tableLeft ans tableRight, but when the code is reconstructed with <cfwddx action = "" here is what I get:
_t1=new Array();_t1[0]=new Object();_t1[0]["tableleft"]=0;_t1[0]["tableright"]=1;myArray=_t1;_t0=null;_t1=null;
Here the variables tableleft and tableright are lower cased. If I specify WDDX2J, I expect the case not to be changed, since JS is case sensitive.
Is there any workaround? (beside using only lower case variables names in the JS program)
--
_______________________________________
See some cool custom tags here:
http://www.contentbox.com/claude/customtags/tagstore.cfm
Please send any spam to this address: [EMAIL PROTECTED]
Thanks.
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

