JSTL 1.1 url working 1.0.6?
Hi, I had developed a set of pages to work with JSTL 1.1 using the uri http://java.sun.com/jsp/jstl/* format. When I was ready to deploy to a UAT server I was forced to downgrade to 1.0.6 (why? Don't ask :) )
So, what I did was remove my jstl 1.1 jar and my standard 1.1 jar from my dev environment. I then ran my app to make sure it would fail (i.e. wanted to make sure it wasn't feeding off jars at the container level for jstl). Sure enough it failed.
Pages still untouched I threw in the 1.0.6 jstl/standard jars into my web-inf/lib and fired up the application. It worked! But my question is why? The pages still use the 1.1 uri for the taglib, how would the tags be found in a 1.0.6 implementation when the 1.0.6 uri is different?
Thanks in advance.

