0

I have multiple async soap requests and I need to mock the responses of those requests. However, it seems the order of the expected requests matter and I was wondering if there were any workarounds.

I came across this example using MockRestServiceServer where it uses the ignoreExpectOrder() method.

1 Answers1

0

You can write your own implementation of the ResponseCreator that sets up a number of URI and responses (for asynchronous requests) and return the matching response based on the input URI. I've done something similar and it is works.

scmlee
  • 1