Sads
Sads

Reputation: 557

Checking saml responses in OpenAM

I'm new to OpenAM. i have configured openAM as SP and federated it with a remote IDP using SAML. everything works fine but i wonder where can i check the SAML responses that comes from the IDP. I verified all the logs but nothing found . Any ideas ?

Upvotes: 0

Views: 1852

Answers (3)

Reddymails
Reddymails

Reputation: 823

Enable message level debugging http://openam.example.com:8080/openam/Debug.jsp

and under your Openam home OPENAM_HOME/log folder you should see files which are named as SAML2.access-06.20.13-08.52 SAML2.access-06.20.13-11.52 SAML2.error-06.20.13-15.42

In these files you should see saml response in the form

Some more info at http://openam.forgerock.org/openam-documentation/openam-doc-source/doc/admin-guide/index/chap-monitoring.html#log-mgmt

-Rama

Upvotes: 1

Sads
Sads

Reputation: 557

Got the SAML Response as URL parameters. We need to retrieve it from openAM and decode it ,

 String samlResponse = request.getParameter("SAMLResponse");

Upvotes: 0

evenprime
evenprime

Reputation: 109

try saml tracer addon im tomcat in firefox.

Upvotes: 0

Related Questions