This is my second day learning ColdFusion. I am able to display .cfm pages. However, when I tried to browse/load the .cfc file, I kept getting this error.
Unsupported Operation. Check application log for more details.
These are my simple testing codes.
<cfcomponent hint="A first CFC">
<cffunction name="getValue" returntype="String" access="public">
<cfreturn "Hellow World">
</cffunction>
</cfcomponent>
Where is the "application log" so I can check for more details?