私はApacheキャメルが初めてです。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>
リクエストはサーバーに正常に送信され、ケースを送信します。そうしないと、サーバーから応答が返されません。
注: 応答は is the server is string からのもので、次のようになります 'code':0, 'description':'operation completed succrssfully', 'complaintId':'45285'
事前に感謝します