Like what you see? Have a play with our trial version.

Error rendering macro 'rw-search'

null

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Settings related to the operation of the SAML Bridge are located in the WEB-INF/web.xml file. These settings describe the location of the Yellowfin instance and the web service credentials, and the attributes for finding and automatically provisioning Yellowfin Usersusers.

 

Access Yellowfin

Here is how How to access Yellowfin (URL):

Code Block
languagexml
<init-param>
	<param-name>YellowfinWebserviceURL</param-name>
	<param-value>http://yellowfin:8080</param-value>
</init-param>

 

Web Server User

Configure the setting for a Yellowfin web server user, that is , Yellowfin webserver user ( a user who can perform webservices web service calls with Webservice role on):the Web service role enabled.

Code Block
languagexml
<init-param>
	<param-name>YellowfinWebserviceUser</param-name>
	<param-value>admin@yellowfin.com.au</param-value>
</init-param>

<init-param>
	<param-name>YellowfinWebservicePassword</param-name>
	<param-value>test</param-value>
</init-param>

 

 

Enable User Provision

Here is how you can enable or disable user user provision. Set it to true to enable it, and false to disable it.Enabling/disabling user provision (set to true or false):

Code Block
languagexml
<init-param>
	<param-name>AutoProvision</param-name>
	<param-value>true</param-value>
</init-param>

 

 

Find User

To be able to find a user (in case of ‘email addresses’ when the authentication method requires their ‘email address’), you need to provide Yellowfin with the email attribute corresponding to the AD FS Claim Descriptions:

 For instance,

Following is an example of this:

Code Block
languagexml
<init-param>
	<param-name>EmailAttribute</param-name>
	<param-value>http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress</param-value>
</init-param>

...

Code Block
languagexml
<init-param>
	<param-name>FirstNameAttribute</param-name>
	<param-value>http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname</param-value>
</init-param>


<init-param>
	<param-name>LastNameAttribute</param-name>
	<param-value>http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname</param-value>
</init-param>

<init-param>
	<param-name>UsernameAttribute</param-name>
	<param-value>http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress</param-value>
</init-param>

<init-param>
	<param-name>YellowfinRole</param-name>
	<param-value>Consumer &amp; Collaborator</param-value>
</init-param>

 

Note: Here, UsernameAttribute relates to Yellowfin the authenticaion method requiring a ‘user name’ authentication method.