Tomcat version 5 displays the following error concerning the EasyLDAP taglib libraries that does not show up in Tomcat version 4:
Mandatory TLD element missing or empty: jsp-version
One of the fellows that I work with spent several days searching before he figured out that adding the following <jspversion> line in the "ldap.tld" file appears have fixed the problem:
Hi all,
I have this problem using easyldap:
HTTP Status 500
org.apache.jasper.JasperException: Mandatory TLD element missing or empty: jsp-version
....
Why ?
Thanks
Tomcat version 5 displays the following error concerning the EasyLDAP taglib libraries that does not show up in Tomcat version 4:
Mandatory TLD element missing or empty: jsp-version
One of the fellows that I work with spent several days searching before he figured out that adding the following <jspversion> line in the "ldap.tld" file appears have fixed the problem:
<taglib id="ldap">
<tlibversion>1.0</tlibversion>
<jspversion>1.1</jspversion>
...
</taglib>
I hope this saves someone some time and effort.