ColdFusion 8, Java, .NET
Okay, so CF8 can interact with Java and .Net but where can I find a list of the objects I can call from them? I know a few but can't find anywhere a comprehensive list. Anybody know?
Okay, so CF8 can interact with Java and .Net but where can I find a list of the objects I can call from them? I know a few but can't find anywhere a comprehensive list. Anybody know?
You probably will not find a list because it is quite extensive. On the java side you can access any of the core java libraries. The exact list varies depending on which jvm you are using:
http://java.sun.com/javase/6/docs/api/
As well as any classes/jars that are within the CF classpath. The classpath varies based on your installation type and environment. But it usually includes all of the jars in the installation "lib" directory: ie c:\coldfusion8\lib\ . That directory contains the core CF jars as well as many third party libraries like iText, apache commons, etcetera. You will need to do a google search to find the documentation/api's for the individual jars. Most are pretty standard so they are not hard to find. (A word of caution: The libraries are used by CF to provide core functionality. So moving or updating any of the core jar files could break CF)
I am not very familiar with .net side. But a quick google search revealed the .NET framework installs the BCL library. So locally anything in the System namespace _should_ be available.
http://en.wikipedia.org/wiki/Base_Class_Library
Another reference mentioned that any assemblies present in GAC should also be accessible. This article shows how you can view the GAC
http://geekswithblogs.net/pavelka/archive/2006/05/05/WindowsExplorerAndTheGlobalAssemblyCache.aspx
HTH
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.