Open ouchxp opened 2 years ago
Yes I am having this exact same issue.
My proxied POST calls return :
"faultstring": "Unsupported Encoding \".*\"",
the only work around is to add :
Content-Encoding: ""
to the headers which seems to overwrite the bad value.
obviously this is not a workable solution for testing clients.
Please fix
This seems to be fixed in 5.15.0
- I checked the Changelog - and for me the header is no longer there
Describe the issue When I send a POST request to the mock server, it proxy the request to my other service with an extra request header
content-encoding: .*
the target service fails because .* is not a valid encoding.What you are trying to do Simply proxy a request to target service
MockServer version 5.14.0
To Reproduce Steps to reproduce the issue:
curl -v 'http://localhost:1080/orders' -X POST --data '{}'
Expected behaviour Proxy requests should be exactly the same as the original requests
MockServer Log