0

I'm connecting to a third-party web service to retrieve rows from the underlying database. I can optionally pass a parameter like this:

http://server.com/resource?createdAfter=[yyyy-MM-dd hh:ss]

to get only the rows created after a given date.

This means I have to store the current timestamp (using #[function:datestamp:...], no problem) in one message scope and then retrieve it in another.

It also implies the timestamp should be preserved in case of an outage.

Obviously, I could use a subflow containing a file endpoint, saving in a designated file on a path. But, intuitively, based on my (very!) limited experience, it feels hackish.

What's the correct idiom to solve this?

Thanks!

4

1 に答える 1

1

Object Store モジュールは、フローからの情報を保存できるようにするためだけに設計されています。

見る:

于 2013-05-14T15:18:27.203 に答える