> I have written a simple java class that encrypts strings, I need to pass in > some strings and return an array of strings. > Am I missing something? What else is necessary to use this class in CF?
not sure this is your case but cf maps java arrays to lists (if i recall rightly) & if that array is manipulated in place, cf will never see it (a copy is passed to java). so either write a java wrapper to handle this (pass the copied array back to cf) or re-write the class to accept/return lists. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm

