Re: c:forEach problem

2007-04-19 Thread Franz Reitinger
See http://forum.java.sun.com/thread.jspa?threadID=683007tstart=75 You can use [EMAIL PROTECTED] prefix=c uri=http://java.sun.com/jstl/core_rt; % or use the correct JSTL1.1 URI with as JSP2.0 container (prefered way): JSTL1.0 for Tomcat 4 (Servlet2.3 / JSP1.2) JSTL1.1 for Tomcat 5 (Servlet2.4/

Re: c:forEach problem

2007-04-19 Thread Andre Prasetya
thanks pak, kl dibaca lg di bawahnya dikasih tahu kl core_rt cuma buat servlet 2.3 On 4/19/07, Franz Reitinger [EMAIL PROTECTED] wrote: See http://forum.java.sun.com/thread.jspa?threadID=683007tstart=75 You can use [EMAIL PROTECTED] prefix=c uri=http://java.sun.com/jstl/core_rt; % or use

Re: c:forEach problem

2007-04-19 Thread Andre Prasetya
sorry i tought i m talking at indonesian mailing list. i ve got the answer to the problem, i should be using [EMAIL PROTECTED] prefix=c uri=http://java.sun.com/jsp/jstl/core; % as the one without /jsp dont support EL, and there is another error about the calling of ${prod.products} it should

jstl x:parse outputs data

2007-04-19 Thread Isabelle Phan
My problem: x:parse is outputting the RSS feed content even though the JSP does not contain x:out or c:out statement The code: c:import var=rssFeed url=http://www.expasy.org/spotlight/index.xml/ x:parse var=rss xml=${rssFeed}/ output: http://www.expasy.org/spotlight/ one month, one protein

Re: jstl x:parse outputs data

2007-04-19 Thread Kris Schneider
Are you sure you're properly declaring the x taglib? It almost looks like x:parse is being treated as a plain XML element and ${rssFeed} is simply evaluated and used for the value of the xml attribute. Can you view the source of the generated page? Isabelle Phan wrote: My problem: x:parse is

Re: jstl x:parse outputs data

2007-04-19 Thread Isabelle Phan
Hi Kris the x taglib is declared like other jstl libraries: xmlns:x=jstl-xml it follows the taglib declarations in web.xml, but from the output you are right, it seems like the tag is ignored: x:parse escapeXml=true xml=?xml version=1.0 encoding=ISO-8859-1? etc... I have the vague

Re: jstl x:parse outputs data

2007-04-19 Thread Isabelle Phan
this is the complete declaration in the JSP: jsp:root xmlns=http://www.w3.org/1999/xhtml; xmlns:jsp=http://java.sun.com/JSP/Page; xmlns:tags=urn:jsptagdir:/WEB-INF/tags/ xmlns:c=jstl-core xmlns:fmt=jstl-fmt xmlns:x=jstl-xml

Re: jstl x:parse outputs data

2007-04-19 Thread Kris Schneider
You don't need those taglib entries in web.xml. Remove them and use the proper JSTL 1.1 URIs: jsp:root xmlns:jsp=”http://java.sun.com/JSP/Page” xmlns:c=http://java.sun.com/jsp/jstl/core; xmlns:fmt=http://java.sun.com/jsp/jstl/fmt;