我在lucee 5.1.0.34上配置了fusebox 5应用程序。 com / reports /文件夹中有一个cfc。当我从cfc运行远程方法时。它给了我以下错误。
这是我的cfc代码。
<cfcomponent displayname="Reports" output="yes">
<cffunction name="test" access="remote" output="yes">
<cfoutput>testing</cfoutput>
</cffunction>
</cfcomponent>
我在浏览器中运行这个方法。
http://example.com/com/reports/abc.cfc?method=test
我检查了日志并搜索了很多。我没有找到任何关于这个问题的帮助。任何人都可以帮我解决这个问题
答案 0 :(得分:1)
默认情况下,运行远程方法会返回页面,其内容类型为text / xml。您的浏览器会将其解释为损坏的xml。试试这个。
<cfcomponent displayname="Reports" output="yes">
<cffunction name="test" access="remote" output="yes">
<cfcontent type="text/html">
<cfoutput>testing</cfoutput>
</cffunction>
</cfcomponent>