RE: passing JSTL to custom tag attribute

2004-05-13 Thread Paul Wallace
Hi & thanks for that, I am using Tomcat 4.1..? On first inspection I see that the Struts implements JSTL libraries such as javax.servlet.jsp.tagext.TagSupport. I am extending the likes of TagSupport / BodyTagSupport etc. Short of extending the Struts EL taglib's, I don't see what c

Re: Problem with JSTL 1.0 and Weblogic 8.1 SP2

2004-05-13 Thread Justyna Horwat
I don't know if this is related to your problem but JSTL 1.0.x binary release came bundled with a xalan and xerces implementation. Different implementations of the xml classes also exist in JDK 1.4.2 which maybe causing a conflict. The conflicts however don't typically occur on standard.jar. O

Problem with JSTL 1.0 and Weblogic 8.1 SP2

2004-05-13 Thread IƱigo Serrano
Hello I have a problem with JSTL 1.0 and Weblogic 8.1 SP2. I have put the libraries (standard.jar and jstl.jar) in the APP-INF/lib (it is obligatory to put all the libs here. Norms of the host provider...) of the EAR and in Windows2000 with JDK 1.4.1 it works but in Solaris 8 with JDK 1.4.2 it dos

Cookies

2004-05-13 Thread Derek
Ok, after searching the archives for the word "cookie" I couldn't find an answer to this one. I've created two jsp pages and am using the Request 1.0 taglib. Here's a sample of the code that works: <%@ taglib uri="http://java.sun.com/jsp/jstl/sql"; prefix="sql"%> <%@ taglib uri="http://java.sun

RE: passing JSTL to custom tag attribute

2004-05-13 Thread Karr, David
I would say there are several basic ideas here: 1. Use a JSP 2.0 container, like Tomcat 5. The JSTL is implemented natively there. 2. Use solution 1. 3. Build a second tag library that's implemented exactly like Struts-EL. Each tag class in Struts-EL is a subclass of the corresponding tag in th