You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to CAS Developer
Guys,
They have updated DOMMetadataResolver in shibboleth that has broken CAS as they have changed the constructor so the element can no longer be null.
In DOMMetadataResolver,
48 /** 49 * Constructor. 50 * 51 * @param mdElement the metadata element 52 */ 53 public DOMMetadataResolver(@Nonnull final Element mdElement) { 54 metadataElement = Constraint.isNotNull(mdElement, "DOM Element cannot be null"); 55 }