8.3 SSO/SAML Intermittent Error

We are currently on 8.3p4, and are experiencing users randomly getting server response could not be evaluated due to No SAML message present in request. When they get refreshed SSO doesn’t work unless they type in a bad username/password in login.jsf?prompt=true and then go back to the default url. Anyone see the error No SAML message present in request?

Starting to see it more wide spread.

Please check the SAML rule under Login Configuration–>SSO Configuration

It hasn’t changed since going from 8.3p3 to 8.3p4. This was not an issue prior.

import sailpoint.object.Identity;
import sailpoint.object.*;
import sailpoint.tools.*;



            // Get the nameId from the assertionAttributes
            System.out.println("Entering SAML Correlation Rule");

            String nameId = (String)assertionAttributes.get("nameId");
            System.out.println("Name ID from Assertion Attribute: " +nameId);

            Identity ident;

            if(nameId != null) {
                // Lookup the identity based on nameId
                ident = context.getObject(Identity.class, nameId);
            }

            return ident;