2017-09-15 75 views
0

我已經使用Spring安全性實現了SAML2 SSO集成,現在我正嘗試爲string()創建一個SAMLObject響應,用於測試和創建更強大和安全的集成。我一直在關注Github上多個項目:無法從java中的字符串創建SAML響應

  1. https://github.com/jrowny/java-saml/blob/master/src/com/onelogin/saml/Response.java
  2. https://github.com/oaeproject/SAMLParser/blob/master/src/main/java/org/sakaiproject/SAMLParser/SAMLParser.java

,我已經使用此代碼想出了:

public static XMLObject stringToSAMLResponse(String samlResponse) throws Exception { 
    BasicParserPool parser = new BasicParserPool(); 
    parser.setNamespaceAware(true); 

    StringReader reader = new StringReader(samlResponse); 

    Document doc = parser.parse(reader); 
    Element samlElement = doc.getDocumentElement(); 

    UnmarshallerFactory unmarshallerFactory = Configuration.getUnmarshallerFactory(); 
    Unmarshaller unmarshaller = unmarshallerFactory.getUnmarshaller(samlElement); 
    if (unmarshaller == null) { 
     throw new Exception("Failed to unmarshal"); 
    } 
    return unmarshaller.unmarshall(samlElement); 
} 

不幸的是,這種方法只是沒有按沒有工作,我得到以下堆棧跟蹤:

java.lang.Exception: Failed to unmarshal 
    at com.clarisite.clingine.clinginewebinterface.security.SAMLUtils.stringToSAMLResponse(SAMLUtils.java:27) 
    at com.clarisite.clingine.clinginewebinterface.security.SAMLUtilsTest.samlResponseStringToResponseTest(SAMLUtilsTest.java:22) 
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) 
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 
    at java.lang.reflect.Method.invoke(Method.java:498) 
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) 
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) 
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) 
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) 
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) 
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78) 
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57) 
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) 
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) 
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) 
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) 
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) 
    at org.junit.runners.ParentRunner.run(ParentRunner.java:363) 
    at org.junit.runner.JUnitCore.run(JUnitCore.java:137) 
    at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68) 
    at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47) 
    at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242) 
    at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70 

我試圖解析字符串是這樣的: https://www.samltool.com/generic_sso_res.php

回答

0

回答這個問題是在這個帖子: Opensaml error receiving correct unmarshaller 我只好先初始化庫,然後我可以正常運行代碼片段。我的問題是使用openSAML-2.6發生的。希望這有助於任何人。