我有以下流程,尝试使用Mule 3.6中的新http连接器和http:static-resource-handler:
<flow name="facebook-sources-apiFlow1">
<http:listener config-ref="HTTP_Listener_Configuration" path="/admin" doc:name="HTTP"/>
<http:static-resource-handler resourceBase="${app.home}/web" defaultFile="index.html" doc:name="HTTP Static Resource Handler"/>
</flow>
我有一个名为&#39; web&#39;的目录。在src / main / app下,以及web目录中的index.html。但是,当我尝试这个时,我收到以下错误:
null (java.lang.NullPointerException). Message payload is of type: NullPayload
在深入研究问题之前,我想我会问新的http连接器是否适用于static-resource-handler。