mvnk
mvnk

Reputation: 11

File polling in network shared folder using Spring integration

We are working on file polling using Spring Integration in our project. Have implemented polling process using file:inbound-channel-adapter. was able to poll files from local directory. But as per requirements, we have to poll files from Network shared folder, like \dzmn02xf00001\28fted$\data\portrait\input\Loadspecifications.

can you please help us if any one of you implemented file polling in network shared folder using Spring integration? Any help would be appreciated.

Upvotes: 0

Views: 1389

Answers (1)

Gary Russell
Gary Russell

Reputation: 174729

For *nix operating systems, NFS shares should just work out of the box.

For Windows shares you need to use the SMB extension - but that needs to be brought up to date to work with Spring Integration 4.0.x; it should work ok with 3.0.x and earlier.

Upvotes: 1

Related Questions