|
Added a new parameter to indicate which HTTP Binding should be used: POST or REDIRECT.
Here an example about how to tell IdP to send a SAML11 response using POST:
https://github.com/pedroigor/picketlink-tests/blob/master/federation/saml/src/test/java/org/picketlink/test/integration/federation/saml/SAML11IDPInitiatedTestCase.java#L95
The same thing if you want SAML 2 Unsolicited Response using POST.
One important thing to keep in mind is that if the IdP is configured with StrictPostBinding=true (which is the default) it will always send responses via POST.
|