<cffunction name="getContent" access="remote" output="false"
returntype="query">
<cfargument name="tags" type="string" required="true">
<cfset VARIABLES.contentGateway =
CreateObject('component','model.model.dataobjects.contentGateway').init()>
<cfreturn VARIABLES.contentGateway.getContent(tags=ARGUMENTS.tags)>
</cffunction>
I tried access=public, but that gave me an error saying access needs
to be remote.