How to Configure SSO for Inactive Users to redirect forbidden page

Hello Remold,

How we can achieve these?

one Question here is.
why SSO is creating session for inactive users? is status not synced to SSO system

Just open a browser and navigate to:
https://<fqdn iiq server>/identityiq/login.jsf?prompt=true

– Remold

1 Like

Okay Thank you Remold

@Maruthikumar How do you achieve this. we are getting same issue.

We have noticed that when we entered the wrong cred for 3 times after that it automatically redirect to login page to login using username and password.

@Remold Can you please guide on this. Can we redirect to Error page (“/error404.html”).

It’s quite simple just modify web.xml in identityiq/WEB-INF

<init-param>
        <param-name>promptLoginUrl</param-name>
        <param-value>/error404.html</param-value>
      </init-param>
      <init-param>
        <param-name>promptMobileLoginUrl</param-name>
        <param-value>/error404.html</param-value>
      </init-param>

Okay got it. I did this and its working. do we any alternative solution for this to implement.