#1 2015-06-04 11:22:27

ralex
Member
Registered: 2015-04-20

httpauthexecute.cf bug?

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

#2 2015-06-04 17:04:52

Arno Mittelbach
datenwerke
Registered: 2012-02-14

Re: httpauthexecute.cf bug?

Thanks for this, I changed the wording. You are right, comma separated is currently not supported.

Cheers
-Arno

Offline

Board footer

Powered by FluxBB