Hi Team,
We have a requirement to redirect to another application from Pega Application post authentication from SSO.
In post authentication activity we are calling a Rest Service whose response we get the another application's redirect URL. We are then trying to redirect to that another application with the help of pySSORedirectRequest HTML.
<html> <head> <meta http-equiv="refresh" content="0;url=<%=StringUtils.urlCrossScriptingFilter(tools.getParamValue("redirectURL"))%>"/> </head> <body></body> </html>
The post authentication if executed individually is redirecting to another Application but when plugged as Post Authentication Activity directly launches Pega Developer studio.
It seems that Post Authentication activity can only be used for setting flags and not for any other purpose.
Is there some other way we can achieve this requirement.