I am trying to write a service provider in java. I am using Shibboleth IdP. I am able to send request to the IdP and when I am trying to read the response I am getting the error :
java.lang.IndexOutOfBoundsException: Index: 0
at java.util.Collections$EmptyList.get(Unknown Source)
at org.opensaml.xml.util.LazyList.get(LazyList.java:93)
just before:
Assertion assertion = response.getAssertions().get(0);
Map resutls = new HashMap();
Any suggestion or pointer will be helpful.