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.

...

Pass session options through a URL. For example:

...

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

By including entry=TIMELINE and the disableheader session options in the above URL, the user will be taken to their Timeline page with the Yellowfin header disabled when they log in.

...

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

For example:

...

languagejava

String[]

...

parameters

...

=

...

new

...

String[]

...

{"ENTRY=TIMELINE","DISABLEHEADER=TRUE"};

...

rsr.setParameters(parameters);

...

Similarly, this example will disable the Yellowfin header, and redirect the user to their Timeline page.

...