Closed martku closed 3 years ago
How to implement a synchronous jms receive and answer to the temporary queue?
This is not working:
@Bean public JmsEndpoint inOutQueue() { return CitrusEndpoints.jms() .synchronous() .destination("InOut.Queue") .timeout(10000) .build(); }
runner.when(ReceiveMessageAction.Builder.receive() .endpoint(InOutQueue) .payload("...").build()); runner.when(SendMessageAction.Builder.send() .endpoint(InOutQueue) .payload("...").build());
any error message or exception stacktrace that you can share? Also you mention Cucumber in the issue title. I do not see any Cucumber steps in your sample code.
How to implement a synchronous jms receive and answer to the temporary queue?
This is not working: