I’ve done stuff like this before using a timer to schedule polling the external
system via their APIs. Sometimes you can use Camel’s bean binding to invoke
their APIs and get what you’re after. However, I have implemented Camel
Processors before to do this.
If you can provide more detail abou
I am not a Camel expert, but one way to approach this would be to have a
process that reads from your external APIs and put the resulting messages into
a queue (for example, using AMQP). Then your camel route can read messages
'from' the queue.
If your external APIs have a camel component integ