Hello folks,

I'm converting a CFC to use <cfinvoke> instead of createObject becase of a 
hosting provider's restrictions.  When using cfinvoke, ColdFusion (v8 Developer 
edition, under Windows 2003 Server) does not see standard Java classes; 
however, when using createObject, there does not appear to be a problem.  A 
short example:

THIS FAILS (Could not find the ColdFusion Component or Interface 
java.lang.System.):
<cfinvoke component="java.lang.System" method="getProperties" 
returnvariable="prop2"> <cfdump var="#prop2#">

THIS WORKS:
<cfset prop = createObject("java", "java.lang.System").getProperties()>
<cfdump var="#prop#">


If someone has encountered a similar issue and resolved it, I'd appreciate 
hearing it.  Thanks in advance...

Regards,
Joel


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:311778
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to