Re: Structure return from java function undefined in ColdFusion Component...

2005-02-14 Thread Nathan Strutz
It's just like flash remoting. Structure names come across in UPPERCASE. I didn't know this about working with Java, but it makes sense, as Java & AS are case sensitive and CF is not. -nathan strutz Troy Simpson wrote: > Would anyone like to explain any explinations one why this occurs? > > T

Re: Structure return from java function undefined in ColdFusion Component...

2005-02-11 Thread Troy Simpson
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 wi

Re: Structure return from java function undefined in ColdFusion Component...

2005-02-11 Thread Troy Simpson
Would anyone like to explain any explinations one why this occurs? Thanks, 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]

Re: Structure return from java function undefined in ColdFusion Component...

2005-02-11 Thread Troy Simpson
This is a better example: Element WRAP16.AFFIL is undefined in S. The error occurred in /global/appsvrdg/d01/jrunservers/staff_systems/cfusion-ear/cfusion-war/edu/ncsu/lib/authenticate/wrap16.cfc: line 75 Called from /global/appsvrdg/d01/jrunservers/staff_sy

Structure return from java function undefined in ColdFusion Component...

2005-02-11 Thread Troy Simpson
I have a function in a Java Class defined as follows: public static java.util.Map deconstruct(String d64, String e64, String m64) The function return an object of type java.util.Map which maps to a ColdFusion Structure. I create an instance of the java class with createObject within a ColdFusion