たくさんのファイルがある「MyFiles」というフォルダーがあります。これらのファイルを REST over HTTP 経由でアップロードする必要があります。アプローチはどうなりますか?
以下で試してみましたがダメでした
<flow name="testFlow1" doc:name="testFlow1">
<http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8081" doc:name="HTTP"/>
<http:rest-service-component
serviceUrl="http://localhost:8280/rest/xyz"
httpMethod="POST">
</http:rest-service-component>
<http:endpoint host="localhost" port="5430" encoding="UTF-8"
method="POST" connector-ref="fileHttp" path="fileuploader" name="muleFileUploader">
</http:endpoint>
</flow>
助けてください。入力フォルダーには複数のファイルがあるため、どうすればそれを実現できますか?
ありがとう