Spring Operator
Spring Operator
**[David Turanski](https://jira.spring.io/secure/ViewProfile.jspa?name=dturanski)** commented It's not as bad as that. AFAICT an RSS feed will return http status 304 Not Modified with an empty message body unless the content has changed....
**[Oleg Zhurakousky](https://jira.spring.io/secure/[email protected])** commented I have to see how we are calling it and if I have access to the status, since while trying with the URL you provided here, it...
**[Oleg Zhurakousky](https://jira.spring.io/secure/[email protected])** commented Moving it to 2.1. Need to do a bit more thinking. Not as simple as it sounds based on how we track what's been read. Most likely...
**[Oleg Zhurakousky](https://jira.spring.io/secure/[email protected])** commented Moving it to 2.2. Not sure how can we address this with current infrastructure.
**[Artem Bilan](https://jira.spring.io/secure/ViewProfile.jspa?name=abilan)** commented Well, I'd say the best solution here would be `SyndEntryDateStrategy` : ```java public interface SyndEntryDateStrategy { Date entryDate(SyndEntry entry, SyndFeed feed); } ``` To allow end-user to...
**[Artem Bilan](https://jira.spring.io/secure/ViewProfile.jspa?name=abilan)** commented Similar problem: http://stackoverflow.com/questions/36859724/how-to-parse-rss-feeds-with-spring-integration-when-pubdate-not-available
**[Artem Bilan](https://jira.spring.io/secure/ViewProfile.jspa?name=abilan)** commented One more use-case: https://stackoverflow.com/questions/44435815/spring-integration-feed-inbound-channel-adapter-duplicate-entries
**[Gary Russell](https://jira.spring.io/secure/ViewProfile.jspa?name=grussell)** commented You can achieve this more simply with a custom `FileListFilter`. Simply have the filter block any files where the equivalent `.ok` file is not present. Of course,...
**[Artem Bilan](https://jira.spring.io/secure/ViewProfile.jspa?name=abilan)** commented PR: https://github.com/spring-projects/spring-integration/pull/873
**[Artem Bilan](https://jira.spring.io/secure/ViewProfile.jspa?name=abilan)** commented As far as we have already `@EnableIntegration` and provide the hook to scan classpath (see #7271) - `@IntegrationComponentScan`, we can come back to this.