Still trying to fully migrate our JSF 1.1/JSP 2.0/Tomcat5.5 application to JSF 1.2/JSP 2.0/Glassfish V2 (build 19)...
I now have gotten to the point that when one of our JSPs are attempted to be loaded, we get an exception:
javax.servlet.jsp.JspException: Component ID '<some-unique-string-id>' has already been used in the view.
Where <some-unique-string-id> is replaced with the unique id that we insured we have due to all of the dup id problems we experienced in JSF 1.1. I am positive that the id that the exception is tagging as a non-unique id is not used anywhere else in our code. Perhaps the view is loaded twice?
Has anyone else seen this issue with their JSPs? Any ideas what is going on?
Thanks.
Rich