Mule won't allow POLL message processor to read file using file Inbound?

倖福魔咒の 提交于 2019-12-31 05:51:33

问题


I have a small query, POLL message processor not allowing to read Files from 'File Inbound' message processor?

I need to read the file for every 5 minutes (Schedule automatically) to proceed with further requirements. Is it possible using POLL?

How can be file inbound used in POLL. Any suggestions will be helpful.


回答1:


I recommend you execute this operation using the quartz connector. Here's an example:

<flow name="repeatIntervalFileFlow" doc:name="repeatIntervalFileFlow">
    <quartz:inbound-endpoint responseTimeout="10000" doc:name="Quartz" jobName="test" repeatInterval="300000">
        <quartz:event-generator-job/>
    </quartz:inbound-endpoint>               
    <flow-ref name="readFileFlow" doc:name="readFileFlow"/>        
</flow>

<flow name="readFileFlow" doc:name="readFileFlow">        
    <file:inbound-endpoint path="path" connector-ref="in" doc:name="File">
        <file:filename-wildcard-filter pattern="*.txt" />
    </file:inbound-endpoint>
    <logger message="listo" level="INFO" doc:name="Logger"/>
   ...      
</flow>

I hope to help;



来源:https://stackoverflow.com/questions/28016029/mule-wont-allow-poll-message-processor-to-read-file-using-file-inbound

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!