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 the login tokenperform different tasks when redirecting a user to Yellowfin, such as suppressing the header, navigating to a particular report, displaying a particular dashboard, etc. This is done by defining user session options within the login token.

Session options can be passed in two ways:

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

 

Passing Sessions Options 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 Options 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 Session Options

Below is a list of key session options and their descriptions that you can use to pass through parameters or URLs:

...