Re: Polling http endpoints

2016-03-06 Thread jelmer
mel.apache.org/loop.html>)? > > > > On Mar 3, 2016, at 11:44 AM, jelmer <jkupe...@gmail.com> wrote: > > > > Since no one answered I came up with this : > > > >from("file:/Users/jkuperus/foo") > > .process(ToMultiPart

Re: Polling http endpoints

2016-03-03 Thread jelmer
"@.campaignId") .to("direct:do-stuff") .otherwise() .log("Task was not yet completed retrying in 2 seconds") .delay(2000) .transform().header(Exchange.HTTP_PATH) .to("direct:await-import-complete")

Polling http endpoints

2016-03-02 Thread jelmer
Hi as part of a camel route i upload a file to a REST service, the service will return status 202 and a Content-Location header that points to a json resource with a status field i want to wait for the status of this resource to change to completed, and only then continue. so i need some sort of