Forum Discussion

Jon_Singh's avatar
Jon_Singh
Icon for Altostratus rankAltostratus
Sep 01, 2016

Single Sign On Issue with Multiple Portals

Hi Guys,

I have two portal access resources, each with their own resources on their own servers, and each resource has its own SSO configuration for passing in USERNAME and PASSWORD. I also variably assign a webtop with the below because, if the user only has one 'link' then don't even display a webtop. If the user has two 'links' then display a webtop.

The issue is, when there are two links displayed, it seems that the SSO configuration for one of the links works, but it doesnt for the other, it assigns one portal accesses' SSO configuration to both links. So one link has the correct SSO, but the other does not and fails.

Has anyone seen this before or have any ideas?

Here's the variable assign I am doing:

set fullwt /Common/full_wt;
set wt [mcget {session.assigned.webtop}];
set pa [llength [mcget {session.assigned.resources.pa}]];
set at [llength [mcget {session.assigned.resources.at}]];
set na [llength [mcget {session.assigned.resources.na}]];
set rd [llength [mcget {session.assigned.resources.rd}]];
set saml [llength [mcget {session.assigned.resources.saml}]];
if {$rd || $at || $saml || ([expr { $pa + $na }] > 1)} {set wt $fullwt};
unset fullwt;
unset pa;
unset at;
unset na;
unset rd;
unset saml;
return $wt;
No RepliesBe the first to reply