You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An encoded url parameter looks decoded by WireMock server. My code sends a request like : POST http://localhost:4200/api/file%3Atest.pdf to Wiremock proxy server. The url is then transformed to POST https://webservie.com/api/file:test.pdf. Here the url encoded parameter file%3Atest.pdf is decoded and forwarded as file:test.pdf which generate an error from the webservice
I
Expected behavior:
I expect that encoded url parameter are not decoded
Describe the bug
An encoded url parameter looks decoded by WireMock server. My code sends a request like :
POST http://localhost:4200/api/file%3Atest.pdf
to Wiremock proxy server. The url is then transformed toPOST https://webservie.com/api/file:test.pdf
. Here the url encoded parameterfile%3Atest.pdf
is decoded and forwarded asfile:test.pdf
which generate an error from the webserviceI
Expected behavior:
I expect that encoded url parameter are not decoded
Test to reproduce
The text was updated successfully, but these errors were encountered: