Rick, well if you look at myjsppage.jsp, I had to use core_rt in the uri. If I use just core in the uri, I get an error as: "According to TLD or attribute directive in tag file, attribute value does not accept any expressions"
<!-- myjsppage.jsp --> <%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %> <html> <head> <title>jauth Application</title> </head> <body> The User Entering the application is : <c:out value="${data.name}" /> </body> </html> Why do I need to use core_rt and not core. I think core_rt is for JSTL 1 and not 1.1 ? Any ideas? ----- Original Message ----- From: "Rick Reumann" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, October 14, 2004 8:17 AM Subject: Re: Using JSTL 1.1 with Struts 1.2.4 and JBoss 3.2.5 or 4.0? Satish Talim wrote the following on 10/13/2004 9:39 PM: > Rick, I ain't doing this db stuff in my jsp - I know it's bad practice; I > had just put some code here that was there in some jsp test application that > did not use Struts. I figured:) I was just being a dork by opening my mouth:) > However, I am still unclear. Karr mentioned "The features provided by > Struts-EL are all natively provided in the container. " - so how does this > JBoss container evaluate <c:out tag (if used) when there is no c.tld or the > required jar file? Any ideas? The latest container uses Tomcat 5 which is JSP2.0 compliant so all that el stuff you'd need c:out for is built in. -- Rick --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]