Hi,
I have an inbound channel adapter which has a poller configured at 5 am daily with cron expression.
The files on the inbound channel are read from a directory and sent to a channel which is then sftp'ed to a remote directory.
The question I have here is, can I have another xml configuration file with an inbound channel that has the same id as the first one
which also has a poller configured with a fixed delay at every 15 minute interval.the files will be read from a different directory and sftp'ed to a remote directory.Can I have multiple configuration on the same channel id.
[HTML]
<int:inbound-channel-adapter id="inboundAdapter"
expression="new java.io.File('${xxx.localDir}').listFiles()">
<int

oller fixed-delay="900000">
</int

oller>
</int:inbound-channel-adapter>
<int:inbound-channel-adapter id="inboundAdapter"
expression="new java.io.File('${yyy.localDir}').listFiles()">
<int

oller cron="0 0 5 0 0 0">
</int

oller>
</int:inbound-channel-adapter>
{/HTML]
Not sure if this is clear.Please help with this one.
Thanks