MWS 9.9 SAML2 context Issue

Hi,
im trying to authenticate to MWS v9.9 using SAML2 , but i have below exception in MWS
SSOContext is null, cannot process SAMLResponse

i de compiled code of SAML handler and validation in MWS and looks like MWS missing some configuration files to initialize ssoContext like websso.properties, i tried to search for this file in installation directory but no result?

i solved this issue and was able to authenticate using SAML2 by using WSO2 Identity server.

here’s the content of websso.properties file
SSO_KEYSTORE=config/security/localhost.p12
SSO_KEYSTORE_PASSWORD={AES}Y5IgMqjfvkgbg7p5VUZztw==
SSO_KEYSTORE_TYPE=PKCS12
SSO_SIGN_ALIAS=localhost
SSO_SIGN_ALIAS_PASSWORD={AES}Y5IgMqjfvkgbg7p5VUZztw==
SSO_ENCRYPT_ALIAS=localhost
SSO_ENCRYPT_ALIAS_PASSWORD={AES}Y5IgMqjfvkgbg7p5VUZztw==
SSO_DEFAULT_ALIAS=localhost
SSO_IDP_METADATA_URL=http://${IDP}/metadata.xml

Thanks for sharing!