我是apache camel的新手。 我想通过发出一个jetty Post请求使用apache camel创建一个服务总线(中间件),然后从服务器获得响应。
这是我做过的事情
<route streamCache="true">
<from uri="jetty:{{wrapperEntry.protocol}}://{{wrapperEntry.host}}:{{wrapperEntry.port}}/rsb/SubmitNewCaseForAndroid?continuationTimeout=0" />
<convertBodyTo type="java.lang.String" />
<to uri="direct:helloworld"/>
</route>
<route streamCache="true">
<from uri="direct:helloworld"/>
<transform>
<simple>
Hello World
</simple>
</transform>
<convertBodyTo type="java.lang.String" />
</route>
请求成功进入服务器并提交我的案例,否则我无法从服务器获得响应。
注意:响应来自于服务器是字符串它是这样的 '代码':0, '描述':'操作完成了',' 'complaintId': '45285'
感谢Advacnce