I think I may have solved my problem.
It appears that when adding items to a java.util.Hashtable (a.k.a
java.util.Map), that you plan to return to ColdFusion to be reference
as a ColdFusion Structure, the Keys used in the Hashtable need to be
all uppercase LETTERS.
For example, the following will pass the InDefined() test, but fail
when trying to reference a structure's value:
java.util.Map map = new java.util.Hashtable();
map.put("affil", "somevalue");
But the following appeared to solve the issue I was having.
It passes the IsDefined() test with a TRUE and I can also reference
the value in ColdFusion.
java.util.Map map = new java.util.Hashtable();
map.put("AFFIL", "somevalue");
To test this out yourself, try the following:
Create a Java Class with a public static function.
public static Map createMap(){
java.util.Map map = new java.util.Hashtable();
map.put("keya", "ValueA");
map.put("keyB", "ValueB");
map.put("KEYC", "ValueC");
return map;
}
I would bet that "keya" and "keyB" would pass the IsDefined() test but
fail any assignments.
<cfset A = myStruct.keya />
<cfset B = myStruct.keyB />
But "KEYC" would pass both the IsDefined() test and the assignment.
<cfset C = myStruct.keyc />
Sincerely,
Troy
--
Troy Simpson
Applications Analyst/Programmer, OCPDBA, MCSE, SCSA
North Carolina State University Libraries
Campus Box 7111 | Raleigh | North Carolina
ph.919.515.3855 | fax.919.513.3330
E-mail: [EMAIL PROTECTED]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking
application. Start tracking and documenting hours spent on a project or with a
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:194387
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54