FTP Adapter Oracle SOA

2.3k Views Asked by At

I want to read file with the gap of 3mint each. So my BPEL FTP adapter read every file after 3mint. e.g. I have 5 files in a directory and my FTP adapter reads 1st file and after 3 mint he reads 2nd and so on.

2

There are 2 best solutions below

2
On
  • In BPEL FTP / File Adapter Configuration Wizard
  • In the Get File or Read Operation
  • Next to the file name slide
  • you can set "Polling Frequency" to 3 Minutes
  • so that it will poll for the file every 3 minutes
  • after that check the .jca file it has the below property
<property name="PollingFrequency" value="180"/>
  • from that you can edit the polling frequency
0
On

You can use the following property for your file adapter configuration

property name="PollingFrequency" value="180"   
property name="MaxRaiseSize" value="1"