I'm building a org.opensaml.saml.saml2.core.Response with openSAML v3.2.0. I've the signed the response and would like to submit it.
I tried following openSAML book (A Guide to OpenSAML v3) but it doesn't seem to be of help with my scenario. I have a c# demo project with basically submits the response by HTTPPost. I'm writing the same in java with opensaml. Do I have to build an artifact as the book suggest? The book example suggests that I send the ArtifactResolve using SOAP even though I'm building a Response.
With the response object above, I'd like to post the response object to an idp.
What is the best way to achieve this? - Is it a good idea to create an Envelope object? With the response object from the saml2 package, how can I create a org.opensaml.soap.soap11.Envelope?
Any help is much appreciated! Thanks!