I've got a problem which I can't quite figure out how to solve. I want to configure a route which fetches xml data (representing health facilities) from a repository using a REST http get, transform the data and load into another system. Typically triggered from a quartz endpoint running every 24 hours.
I have found that this is quite straightforward using quartz, http and xslt components. But ... the data coming from the repository is paginated so I can't fetch it in a single request. Is there anyway to create a route in camel DSL (xml or java) which makes a series of requests to the http service, incrementing an http parameter eg. Page=xx, until some test condition is true in the xml result eg. count('/Facilities/Facility')=0 Thanks for any pointers. Regards Bob