I have a java program who call reports from server to server. The url is encoded before he get sended to reports:
URLEncoder.encode(param, StandardCharsets.UTF_8.toString());
but the parameters are shown in reports with the encoded characters.
For example if i have a parameter : p_user=name||' '||last_name
encoded url : p_user=xxx%20yyy
in reports pdf or htmcss i get xxx%20yyy
is there a way to tell reports to decode parameters values before processing?
if i not encode the parameters i get 400 bad request