views:

29

answers:

0

I am using opensaml 2.2.3 - Therefore I have to endorse the following jars:

  • resolver-2.9.1.jar
  • serializer-2.9.1.jar
  • xalan-2.7.1.jar
  • xercesImpl-2.9.1.jar
  • xml-apis-2.9.1.jar

This causes an error during jsp compilation in my web application:

logon.jsp:26:20: Error in example.jsp" at line 83: No tag library could be found with this URI. Possible causes could be that the URI is incorrect, or that there were
 errors during parsing of the .tld file.
<%@ include file = example.jsp"    %>
  ^---------------------------^
logon.jsp:28:5: Invalid tag library.
<%@ taglib uri="abc.tld" prefix="def"   %>

When I remove the endorsed jars this error does not occur, but of course opensaml does not work. We already checked by starting the application in verbose mode but did not find ant classes being loaded from any other version of the endorsed jars.

Does anyone have any ideas what could be causing the problem. Also, if there is a compilation error, shouldn't there be a java compilation error?