Hello,
We tried configuring our CAS 7 as SAML service provider with cas.authn.pac4j.saml[0].callback-url-type set to PATH_PARAMETER. We do this since one of our IDPs seems to be picky about query parameters. As far as I can tell, configuring CAS like this creates a new callback endpoint like /cas/login/{client_name} and this endpoint just redirects SAML responses to /cas/login?client_name={client_name}.
However, our problem is that the redirect request is of course a GET request which means the SAML response moves from the original POST request body to a query parameter. Our SAML responses are signed so they are quite long and we are now hitting AWS ELB request URL character limit with the redirect.
Any ideas what could we do if we have to use PATH_PARAMETER type callback URLs?
Tomi