I'm starting to evaluate 5.3.0-R3 and am getting an error when testing SAML 1.1 ticket validation support. This is the response/error message I'm getting from CAS when POSTing to the /samlValidate endpoint:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<saml1p:Response InResponseTo="localhost" IssueInstant="2018-05-09T21:48:08.725Z" MajorVersion="1" MinorVersion="1" ResponseID="_cde23085499ae732f64d4c360b8c2349"
xmlns:saml1p="urn:oasis:names:tc:SAML:1.0:protocol">
<saml1p:Status>
<saml1p:StatusCode Value="saml1p:RequestDenied"/>
<saml1p:StatusMessage>service and ticket parameters are both required</saml1p:StatusMessage>
</saml1p:Status>
</saml1p:Response>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Based on the error it sounds like CAS is expecting "service" and "ticket" parameters like you would send to the CAS 2.0 /serviceValidate endpoint, but according to the spec the only parameter used should be "TARGET":
Is this a bug or am I missing some configuration? Thanks for the help.