It's relatively easy to use Java to figure out the details of what you can do with the various factory services.
e.g.
<cfscript>
factory = createObject('java','coldfusion.server.ServiceFactory');
</cfscript>
<cfoutput>
<cfloop list="#structKeyList(factory)#" index="i">
#factory[i].getClass().getname()#<br>
</cfloop>
</cfoutput>That will give you a list of the Java classes for each of the factory services. You can then use Java reflection to find out more about the class.
I wrote a Java class dumping utilitly for CFMX which is available here:
http://www.spike.org.uk/index.cfm?objectid=58DC386D-22AB-07A9-6B43A9E80357D6C7&startDate=06_2003
Spike
Beattie, Barry wrote:
Hi all
anyone know of more documentation (and examples?) for cf.Factory other than
http://www1.oli.tudelft.nl/jochemd/index.cfm?PageID=10
??? It's the only link I can find on it
thanx barry.b
--- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED]
MX Downunder AsiaPac DevCon - http://mxdu.com/
-- Stephen Milligan Consultant for hire http://www.spike.org.uk
--- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED]
MX Downunder AsiaPac DevCon - http://mxdu.com/
