Ivan Zhivkov
Ivan Zhivkov
A single request can return only one response. So `All response to be returned` is not applicable. The mock server documentation states: `if multiple response bodies are specified for an...
What version is the OpenAPI spec? I had the same problem. But while typing some findings here, I tried using OpenAPI spec version 3.0.1 and it worked. Using spec version...
It should be possible using a callback: https://www.mock-server.com/mock_server/creating_expectations.html#button_response_method_or_closure_callback
Hello. You will have to combine from two examples. First [this](https://www.mock-server.com/mock_server/creating_expectations.html#button_forward_overridden_with_socket_address) is how to modify a request to send it somewhere else. You have to plug this in the request...
Hello. What you are describing can be done currently with: `HttpRequest.withSecure(isSecure)` Example: ```Java .forward( HttpOverrideForwardedRequest.forwardOverriddenRequest() .withRequestOverride( HttpRequest.request() .withSecure(true))); ```