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 perform 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 in 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

...

Session 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

...

Session Options as Part of a SSO Call

A Single Sign-On, or SSO, 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

...