我正在与Camel SXF组件作斗争。我需要它不使用分块编码,但我找不到设置参数的正确方法。
根据Apache CXF Docs(http://cxf.apache.org/docs/client-http-transport-include-ssl-support.html(应该有一个名为"AllowChunking"的参数,但是我在尝试使用它时没有运气。我试过这个
.to("cxf:bean:pdsEndpointBean?loggingFeatureEnabled=true&properties.AllowChunking=false")
而这个
@Bean
public CxfEndpoint pdsEndpointBean() {
CxfEndpoint cxfEndpoint = new CxfEndpoint();
cxfEndpoint.setAddress(endpoint);
cxfEndpoint.setEndpointName("foo");
cxfEndpoint.setWsdlURL("bar");
cxfEndpoint.setServiceClass(foo);
HashMap<String, Object> properties = new HashMap<>();
properties.put("AllowChunking",false);
cxfEndpoint.setProperties(properties);
return cxfEndpoint;
}
谁能帮我?非常感谢:)
使用 Camel 3.0.1
尝试像这样使用 CxfEndpointConfigurer:
cxfEndpoint.setCxfEndpointConfigurer(new CxfEndpointConfigurer() {
@Override
public void configure(final AbstractWSDLBasedEndpointFactory abstractWSDLBasedEndpointFactory) {
}
@Override
public void configureClient(final Client client) {
((HTTPConduit)client.getConduit()).getClient().setAllowChunking(false);
}
@Override
public void configureServer(final Server server) {
}
});
并始终指定骆驼的版本