我正在尝试向 JMS 主题发送和接收消息。
<testcase name="DeliveryToPT3PLIT">
...
<actions>
...
<send endpoint="fromEndpoint">
<message>
<resource file="com/roche/icc/citrus/messages/input/PT-3PLWoBatchSplit.xml"/>
</message>
<header>
...
</header>
</send>
<receive endpoint="toEndpoint">
<description>Receive asynchronous message from topic</description>
<message>
<resource file="com/roche/icc/citrus/messages/output/PT-3PLWoBatchSplit.xml"/>
</message>
<header>
...
</header>
</receive>
</actions>
</testcase>
这些操作似乎一个接一个。问题是我的应用程序运行得非常快,当我向第一个主题发送消息时,它几乎立即出现在“toEndpoint”上。因此接收操作无法捕获适当的消息,因为它已经被处理过。
有没有办法同时进行这些操作?
问候