I have been beating my head against this for a while, and am starting to make progress. However, I ran into some trouble converting a string representation of a SAML 2 Assertion (in XML) to an Assertion object.

It looks like I am getting a valid org.w3c.dom.Document with appropriate data, and I seem to be getting a valid SAMLObjectBuilder<Assertion> from the builder factory, but when I try to put them together all I get is a blank Assertion; subject, issuer, issue time and so on are all null, despite them clearly being set in the XML.

Does anyone see what I am doing wrong, and can suggest a solution?

Document doc = loadXMLFromString(saml);

XMLObjectBuilderFactory builderFactory = Configuration.getBuilderFactory();

SAMLObjectBuilder<Assertion> assertionBuilder =
  (SAMLObjectBuilder<Assertion>)
  builderFactory.getBuilder(Assertion.DEFAULT_ELEMENT_NAME);

Assertion assertion = assertionBuilder.buildObject(doc.getDocumentElement());

String nameID = assertion.getSubject().getNameID().getValue();

At the nameID assignment, assertion.getSubject() returns null, failing the remainder of the expression.

The example I am using is the full XML from sstc-saml-tech-overview-2.0-draft-03, page 10.

The function loadXMLFromString() above is mostly borrowed from In Java, how do I parse XML as a String instead of a file?

link|improve this question

We don't edit the question name with [SOLVED] here. If you've got your answer, please mark it with the green tick to the left of it - your question will only then be marked as "solved". – marcog Jan 14 '11 at 1:16
@marcog I tried that at first, but couldn't mark my own answer as accepted before the end of the 48 hour grace period, and with all the searching I did for a solution, thought it was relevant enough to leave the question around rather than delete it. – Michael Kjörling Jan 25 '11 at 15:40
It's great that you've posted a self-answer. Too many people just walk away. +1 to both question and answer for doing so! – marcog Jan 25 '11 at 15:43
feedback

1 Answer

up vote 3 down vote accepted

In case someone else is facing the same problem, and runs across this, here is the answer.

https://wiki.shibboleth.net/confluence/display/OpenSAML/OSTwoUsrManJavaCreateFromXML

Just take the unmarshalling example, substitute your Document instance, and look at the result of the final unmarshall() call.

This is probably completely obvious to anyone with some more experience in Java, but as I am largely learning as I go, I seem to be running into these roadblocks.

link|improve this answer
Same exact problem, but I'm not connecting the dots. The result of the unmarshall is an EntitiesDescriptor. How do I build a saml object out of that? – stu Sep 9 '11 at 11:41
1  
@stu: The result of the ummarshall is an object of the same type as your root document element. In the example it is an EntitiesDescriptor but in your case it would be some other type of SAML Object such as an Assertion. – Dougman Nov 22 '11 at 19:58
yea thanks, I eventually figured that out, casted to the right object and voila. I was quite stunned that it all worked. – stu Nov 23 '11 at 21:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.