I have the zip file uploaded
Sorry for not uploading the file sooner. I missed that option when setting up the project and needed to make some changes to the project before I was ready to upload it anyway.
I sincerely hope you find the project useful!
Be sure that, if your ColdFusion install is not at the OSX default location (/Applications/ColdFusion8) that you edit index.cfm and input the right path. Also, if you're running a MultiServer or J2EE install, point the install location at your cfusion-war/WEB-INF folder. While that won't show all the JRun classes available (such as jrun.jar), it will give you all the ColdFusion-specific classes, which is more than enough anyway.
But more than anything, play, play, play! Mess around with ColdFusion objects, see what their Java type is, then look them up in TypeCast!
To find out the Java class name of a ColdFusion object, just do something like this:
<cfoutput>myStruct.getClass().getCanonicalName()</cfoutput>
That'll tell you what you need to look up in TypeCast to see what methods and properties are available to you.

There are no comments for this entry.
[Add Comment]