I am running 5.5. Everything is green on SimpleSaml dash board. I did some debugging and it looks like there are some issues resolving class name. This is where its not coming back in Module.php
if (!class_exists($className)) {
throw new Exception('Could not resolve \'' . $id .
'\': No class named \'' . $className . '\'.');
} elseif ($subclass !== NULL && !is_subclass_of($className, $subclass)) {
SimpleSAML_Logger::debug('SubClass Does Not exist');
throw new Exception('Could not resolve \'' . $id . '\': The class \'' .
$className . '\' isn\'t a subclass of \'' . $subclass . '\'.');
}
Class name that it is building with $className = 'sspmod_' . $tmp[0] . '_' . $type . '_' . $tmp[1]; is sspmod_saml_Auth_Source_SP. I am confuse if this is something that can cause it to not work.