我需要接收器在消息响应中json新的头字段。在发送新的头部和主体后休息soapUI或客户端。对于管理响应标题和正文我修改了我的路线,选项bindingStyle = SimpleConsumer但现在在soapUI中只看到标题但是正文是空的。首先这个操作(bindingStyle = Default)我看到了身体反应,但是我没有看到标题。
(我使用骆驼2.12) 谁能帮帮我?
<route id="mainid">
<from uri="cxfrs:bean:rsServer?resourceClasses=xxxx&bindingStyle=SimpleConsumer"/>
<doTry>
<routingSlip uriDelimiter=",">
<simple>direct:${header.operationName}</simple>
</routingSlip>
<doCatch>
.....
</doCatch>
</doTry>
</route>
...
<route id="routeid">
<from uri="direct:postmethod" />
<removeHeaders pattern="Camel*" />
<to uri="jetty:{{baseUrl}}{{uri}}" />
</route>
...