本文整理汇总了Java中org.opensaml.xml.parse.BasicParserPool.parse方法的典型用法代码示例。如果您正苦于以下问题:Java BasicParserPool.parse方法的具体用法?Java BasicParserPool.parse怎么用?Java BasicParserPool.parse使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.opensaml.xml.parse.BasicParserPool
的用法示例。
在下文中一共展示了BasicParserPool.parse方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: buildOpenSamlXmlObjectFromResource
import org.opensaml.xml.parse.BasicParserPool; //导入方法依赖的package包/类
/**
* Read a Ressource File.
*
* @param resourceFile
* @return the string representation of the file
* @throws IOException
* @throws SecurityException
* @throws MessageDecodingException
*/
public static XMLObject buildOpenSamlXmlObjectFromResource(final Resource resourceFile)
throws Exception {
// Parse XML file
BasicParserPool ppMgr = new BasicParserPool();
ppMgr.setNamespaceAware(true);
Document inCommonMDDoc = ppMgr.parse(resourceFile.getInputStream());
Element rootElement = inCommonMDDoc.getDocumentElement();
// Get apropriate unmarshaller
UnmarshallerFactory unmarshallerFactory = Configuration.getUnmarshallerFactory();
Unmarshaller unmarshaller = unmarshallerFactory.getUnmarshaller(rootElement);
// Unmarshall using the document root element, an EntitiesDescriptor in this case
XMLObject xmlObject = unmarshaller.unmarshall(rootElement);
Assert.assertNotNull("Unable to read test SAML XML file !", xmlObject);
return xmlObject;
}
示例2: parseTokenFromString
import org.opensaml.xml.parse.BasicParserPool; //导入方法依赖的package包/类
/**
* parseTokenFromString converts a raw wresult and extracts it into an assertion.
*
* @param wresult the raw token returned by the IdP
* @return an assertion
*/
public static Assertion parseTokenFromString(final String wresult) {
try (final InputStream in = new ByteArrayInputStream(wresult.getBytes("UTF-8"))) {
final BasicParserPool parserPool = new BasicParserPool();
parserPool.setNamespaceAware(true);
final Document document = parserPool.parse(in);
final Element metadataRoot = document.getDocumentElement();
final UnmarshallerFactory unmarshallerFactory = Configuration.getUnmarshallerFactory();
final Unmarshaller unmarshaller = unmarshallerFactory.getUnmarshaller(metadataRoot);
final RequestSecurityTokenResponseImpl rsToken = (RequestSecurityTokenResponseImpl) unmarshaller.unmarshall(metadataRoot);
//Get our SAML token
final List<RequestedSecurityToken> rst = rsToken.getRequestedSecurityToken();
final AssertionImpl assertion = (AssertionImpl) rst.get(0).getSecurityTokens().get(0);
if (assertion == null) {
LOGGER.debug("parseTokenFromString: assertion null");
} else {
LOGGER.debug("parseTokenFromString: {}", assertion);
}
return assertion;
} catch (final Exception ex) {
LOGGER.warn(ex.getMessage());
return null;
}
}
示例3: unmarshallArtifactResolve
import org.opensaml.xml.parse.BasicParserPool; //导入方法依赖的package包/类
public static ArtifactResolve unmarshallArtifactResolve(final InputStream input) throws IllegalAccessException, UnmarshallingException, XMLParserException {
BasicParserPool ppMgr = new BasicParserPool();
ppMgr.setNamespaceAware(true);
Document soap = ppMgr.parse(input);
Element soapRoot = soap.getDocumentElement();
// Get apropriate unmarshaller
UnmarshallerFactory unmarshallerFactory = Configuration.getUnmarshallerFactory();
Unmarshaller unmarshaller = unmarshallerFactory.getUnmarshaller(soapRoot);
Envelope soapEnvelope = (Envelope)unmarshaller.unmarshall(soapRoot);
return (ArtifactResolve)soapEnvelope.getBody().getUnknownXMLObjects().get(0);
}