Hi there, Can someone support my query, when working with
wiremock.net, is there a possibility to forward the query params, headers, certificates from the initial http request to the external service? My fluent match is something like this
server.Given(Request.Create().UsingAnyMethod())
.RespondWith(Response.Create().WithProxy(
new ProxyAndRecordSettings
{ Url = "
http://externalservice.com",
SaveMapping = true
}));
I guess there should be some more properties should be set to fulfil this requirement via
wiremock.net? I appreciate support here 🙂, couldnt find an answer over the internet.