}
@Override
protected CamelContext createCamelContext() throws Exception {
CamelContext camelContext = super.createCamelContext();
ConnectionFactory connectionFactory = new ActiveMQConnectionFactory("vm://localhost?broker.persistent=false");
camelContext.addComponent(componentName, jmsComponentClientAcknowledge(connectionFactory));
// add "testheader" to in filter set
JmsComponent component = (JmsComponent)camelContext.getComponent(componentName);
((DefaultHeaderFilterStrategy)component.getHeaderFilterStrategy()).getInFilter().add("testheader");