HTTPAllowDecodedUrlPercent

Hi,

I have a web database that have some links to an external application. A parameter needs to be set in the URL and this parameter is between % :

http://b02s7.intranet.groupesni.fr:10000/IKOSHVW/index.do?clientHostName=%CLIENTNAME%

the problem is that domino puts 25 after the percent sign in the URL.

http://b02s7.intranet.groupesni.fr:10000/IKOSHVW/index.do?clientHostName=%25CLIENTNAME%25

I have read the forum and found about the notes ini “HTTPAllowDecodedUrlPercent=1” : that’s what i’ve done but nothing has changed even after my server restarted.

I can’t change my URL because the exsternal application is waiting for the parameter between “%”

Thanks for help

Subject: HTTPAllowDecodedUrlPercent

Domino doesn’t put 25 after your % sign, it is replacing your % sign with %25, which is the HTTP URL encoding for the % sign. You can not use % sign in a URL as it is an escape character for characters that can’t be a part of a URL, such as %20 for space and %25 for %.

/Peter