WSO2Esb と WSO2DSS を使用してデータベースに読み取り値を挿入しています。モバイル側から読み取り要求を取得している間、挿入は正常に機能しています。200 と一意の値の応答が必要です。その場合、モバイル側のクライアントがリクエストをもう一度送信するので、プロキシがこのリクエストをデータベースに送信します。したがって、2 つまたは 3 つの読み取りごとに重複する値を格納するデータベースは、クライアントにとって完全に不公平です。これに対する解決策を見つける
<!-- The example shows WSO2 ESB acting as an Idempotent Receiver -->
<definitions xmlns="http://ws.apache.org/ns/synapse">
<proxy name="IdempotencyReceivingProxy">
<target>
<inSequence>
<log level="full"/>
<!-- Store all messages in an Jmsmemory message store -->
<store messageStore="MyStore"/>
</inSequence>
<outSequence>
<send/>
</outSequence>
</target>
</proxy>
<!-- Further mediation of messages are done in this sequence -->
<sequence name="next_seq">
<send>
<endpoint>
<address uri="http://localhost:9000/services/SimpleStockQuoteService"/>
</endpoint>
</send>
</sequence>
<messageStore name="MyStore"/>
<!-- Resequencing Processor takes the next sequence number and hand over to "next_seq" and preserve Idempotency -->
<messageProcessor
class="org.apache.synapse.message.processors.resequence.ResequencingProcessor"
name="ResequencingProcessor" messageStore="MyStore">
<parameter name="interval">2000</parameter>
<!-- Takes the sequence number using Xpath -->
<parameter name="seqNumXpath" xmlns:m0="http://services.samples" expression="substring-after(//m0:placeOrder/m0:order/m0:symbol,'-')"/>
<parameter name="nextEsbSequence">next_seq</parameter>
<parameter name="deleteDuplicateMessages">true</parameter>
</messageProcessor>
</definitions>
このために、私はこのリンクをたどりましたhttp://docs.wso2.org/wiki/display/IntegrationPatterns/Idempotent+Receiver 私の要件に適していますか