1

有没有办法在我的资源中创建对文件的 http 访问,例如创建网站以将文件传递到 mule 3.4?如果是这样,如何或向我发送一些关于如何构建它的文件,因为我试图这样做,但我看不到方法......

这是一个测试,它只是做一个回显,我正在寻找一种从我的资源中发送文件的方法......

<flow name="httpWsdlAccess">
    <http:inbound-endpoint name="clientEndpoint" address="${serverName}/file"/>
    <echo-component/>
</flow>
4

2 回答 2

2

使用static-resource-handler

<http:static-resource-handler
      resourceBase="${app.home}/docroot"
      defaultFile="index.html" />

在您的流程中,在 HTTP 入站端点之后。

于 2013-10-30T20:04:11.770 回答
0

顺便说一句,如果有人正在查看此信息,则在 mulesoft 文档中解释了静态资源处理程序:http: //www.mulesoft.org/documentation/display/current/HTTP+Transport+Reference#HTTPTransportReference-ServingStaticContent %28sinceMule3.2%29

于 2014-06-11T15:26:05.363 回答