Answered question

how can I disable encoding values into GET URL?

Hello,

How can I disable the encoding values ?
I tried to disable it via the request parameter but it doesn't work...

Desired value:
<PARAMS+CODF%3D"SIMS"+P_FCTNAV%3D"SIMS"+CD%3D"SI"+NUM%3D"60

Sent value:
%3CPARAMS%2BCODF%253D%22SIMS%22%2BP_FCTNAV%253D%22SIMS%22%2BCD%253D%22SI%22%2BNUM%253D%2260

Help please?

Thanks

jaouher C.
jaouher C.

jaouher C.

Level
1
110 / 750
points
Nouredine A.
Nouredine A.

Nouredine A.

Level
4
5000 / 5000
points
Team

Your value contains some characters like "<" that have to be encoded and our HTTP client won't accept that value in the request URL if it is not encoded.

But your server should be able to accept the whole content encoded. The issue with the second value you pasted is that since it already contained encoded characters (%3D) they have been encoded twice. And my guess is that the server does not accept that value which is normal.

So i would expect the server to accept this encoded value instead:

%3CPARAMS%20CODF%3D%22SIMS%22%20P_FCTNAV%3D%22SIMS%22%20CD%3D%22SI%22%20NUM%3D%2260

Have you tried to use such encoded value?

Did you find this useful ?

No (0)

Yes (1)

100%

100% of users found this answer useful