I configured key mapping in cgicmd.dat on the report server machine,
My key in cgicmd.dat is
========================
mykeys: userid=%1/%2@%3
mykeys1: userid=%1/%2@%3 %*
here is the url i am trying to pass
===================================
http://ccsun1.citycab.com.sg:7777/reports/rwservlet?cmdkey=mykeys+fmsprod_app+citycab1+ifmstest&destype=cache&desformat=PDF&report=/data1/ifms/reports/DM0010S.rdf&p_val=7885&printid=jaleel
Here cmdkey=mykeys+fmsprod_app+citycab1+ifmstest is the key map value i am passing through the url
Error upon passing the url is
=============================
REP-52005: The specified key "mykeys fmsprod_app citycab1 ifmstest" does not exist in key map file.
Can any one help me what wrong with my code. Am i doing this in a right way....
-
cgicmd.dat not working in Oracle Report 10g (1 messages)
- Posted by: mohamed jaleel
- Posted on: June 10 2004 03:39 EDT
Threaded Messages (1)
- Wrong url by Geonosian coder on July 06 2004 10:02 EDT
-
Wrong url[ Go to top ]
- Posted by: Geonosian coder
- Posted on: July 06 2004 10:02 EDT
- in response to mohamed jaleel
Thats because you are mixing + and & as the separator.
Here you have used + as separator
mykeys+fmsprod_app+citycab1+ifmstest
Here you have used & as separator
&destype=cache&desformat=PDF&report=/data1/ifms/reports/DM0010S.rdf&p_val=7885&printid=jaleel
You need to use one of them either + or &
I have verified that the key works fine
Hope this helps