I can call the following URL to find out the state of a Camel route section...
This will give
{
timestamp: 1425658189,
status: 200,
request: {
operation: "getState()",
mbean: "org.apache.camel:context=VCM047,name="VCM047_store_list_schedule",type=routes",
type: "exec"
},
value: "Started"
}
The route section is defined as...
<route id="VCM047_store_list_schedule">
<!-- Fire every 8 hours -->
<from uri="timer://storeListTimer?fixedRate=true&period=28800000"/>
<transform>
<simple>{{WebStoresToProcess}}</simple>
</transform>
<to uri="direct:splitStores" />
</route>
I want to be able to trigger this section for testing.
So if I could stop/start the section, it might tigger it.
Which leads me to try...
But this never returns.
Can anyone offer some advice on how to stop / start a camel-section via Jolokia.