You are not logged in.
Pages: 1
Hi,
I just let you know that anytime you want to add multiples value keys inside the "keys" tag , insted of adding multiple "keys" tag for each report, reportserver ignores them and so you cannot run the report via URL.
An example below :
This configuration is OK :
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<servlet>
<httpauthexecute>
<username>myuser</username>
<password>mypass</password>
<registered>
<ids></ids>
<keys>reportkey1</keys>
<keys>reportkey2</keys>
</registered>
<executeuser>
<id>47595</id>
</executeuser>
</httpauthexecute>
</servlet>
</configuration>
The following does not work :
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<servlet>
<httpauthexecute>
<username>myuser</username>
<password>mypass</password>
<registered>
<ids></ids>
<keys>reportkey1,reportkey2</keys>
</registered>
<executeuser>
<id>47595</id>
</executeuser>
</httpauthexecute>
</servlet>
</configuration>
If I don't get wrong the configuration guide says that you can use multiple value comma separeted inside the "keys" tag .
Cheers,
Alex
Offline
Thanks for this, I changed the wording. You are right, comma separated is currently not supported.
Cheers
-Arno
Offline
Pages: 1