Details
Description
When defining a rest-swagger component
@Bean public Component mobile(CamelContext camelContext) throws URISyntaxException { RestSwaggerComponent mobile = new RestSwaggerComponent(camelContext); mobile.setHost(mobileHost); mobile.setBasePath(mobileBasePath); mobile.setSpecificationUri( new URI(mobileSpecificationPath)); mobile.setComponentName("http4"); return mobile; }
in the following route (rest-endpoint missing, this is calling direct:getMobileAccountById) the host attribute is overwritten by the previous host header (therefore removeHeader needs to be called prior to invocation of the rest-swagger endpoint)
from("direct:getMobileAccountById").routeId("getMobileAccountById") .setHeader("customerId", simple("headers.mobileAndFixedlineCustomerId.split(',')[1]")) .removeHeader("Host") .to("mobile:getAccountById") .unmarshal(gsonDataFormatMobile) .log("Just got called for Mobile");
The attribute host should not be overwritten by the host-header, if it is set explicitly on the component.