I have a coldfusion component and I would like to call a function it from my java.
<cfcomponent name="coldFusionComp">
<cffunction name="callMeFromJava" access="public" output="false">
<cfreturn "Hello World!">
</cffunction>
</cfcomponent>
Is that possible? If so, could you please give me an example?