Skip to Content
0
Dec 08, 2011 at 05:21 PM

Created TrustedPrincipal and redirect to InfoView

21 Views

I have a website that successfully authenticates to BOE using Trusted Authentication. I would like to use this authenticate to log into InfoView without additional credential prompting. Unfortunately, InfoView doesn't seem to recognize the session and prompts for credentials.

I've tried the following code:

...

create enterprise session

...

get logon token

...

response.sendRedirect("http://server:port/InfoViewApp/");

I've also tried hacking the parameters, but to no avail:

response.sendRedirect("http://server:port/InfoViewApp/logon/logon.do?token=" + token);

I would like to avoid modifying InfoView itself to support Trusted Authentication, if possible.

Is it possible to share credentials in this manner?