I\'m getting the following error when I try to use the JSTL XML taglib:
/server-side-transform.jsp(51,0)
According to TLD or attribute directive in tag file,
at
I realize this question was asked quite a while ago but I just ran into the same problem. In my case, the example I was following directed me to use:
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
When I should have been using:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
I was staring at the solution for a while before the extra jsp in the uri popped out at me.