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.

You can define Yellowfin user session options within login, like suppress header, navigate to a particular report or display a particular dashboard etc.

 

Passing Login Session ID

Session options can be passed in two ways:

  1. As part of a URL
  2. As part of a SSO call

 

Passing Sessions via URL

Pass session options through a URL. For example:

Code Block
http://<yellowfin-server>/logon.i4?LoginWebserviceId=<token>& disableheader =true&entry= TIMELINE

 

Passing Sessions as Part of a SSO Call

A SSO or Single Sign-On call (which includes LOGINUSER and LOGINUSERNOPASSWORD) can be used to pass sessions, by applying the setParameters() method.

...

Code Block
languagejava
String[] parameters = new String[] {"ENTRY=TIMELINE","DISABLEHEADER=TRUE"};

rsr.setParameters(parameters);

 

 

Available Options

Below is a list of key options and their descriptions that you can use for parameters or URL:

...