I have a hyperlink in my page as below,
<a href="../metrics/viewScLogFile.action?testSetIp=192.20.199.58&sc_location=/home/softtest/features/st5.0/ver1/REF&file=917.b.0+10digs.ref&testSetId=3">917.b.0+10digs.ref</a>
when I click on the link, i am logging all the query params in server side, all param values are shown properly except file param which file=917.b.0+10digs.ref.
This file param is skipping the special character '+' when I log this value (prints as 917.b.0 10digs.ref in logs).
Because of this my functionality fails, how to get param value(in this case file name) as it is without skipping special charactes.
Any suggestions on this would be great. Let me know if i am missing any info.