I've created a rest service using apache camel. how can I identify the http headers' order in a request? I used NettyHttpMessage to access to the full request from exchange:
NettyHttpMessage message = exchange.getMessage(NettyHttpMessage.class);
I know that in http, the headers' order doesn't change the functionality but I want to use it for specific purpose. thanks