I've created a CFC with a simple remote cffunction. Is there a way to publish this as a web service and get it to output a WSDL file?
Code:
<cfcomponent>
<cffunction name="echoString" returnType="string" access="remote">
<cfargument name="input" type="string">
<cfreturn arguments.input>
</cffunction>
</cfcomponent>