2017-02-06 50 views
2

我在lucee 5.1.0.34上配置了fusebox 5應用程序。 com/reports /文件夾中有一個cfc。當我從cfc運行遠程方法。它給了我下面的錯誤。Lucee文檔爲空錯誤

enter image description here

這裏是我的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

我檢查了日誌,很多搜索。我還沒有找到任何關於這個問題的幫助。任何機構都可以幫我解決這個問題

回答

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>