xml « JSTL « JSP-Servlet Q&A





1. Using JSP code in JavaScript    stackoverflow.com

I want to use JSTL's fmt tag in javascript to localize my alert messages. My javascript file is a standalone file and when I include fmt tag in js file browser gives ...

2. XSLT/Java: ERROR: 'Cannot find external method 'max' (must be public).'    stackoverflow.com

I am copying an example from XSLT Cookbook: 2nd Edition (O'Reilly: Mangano, 2006) where Mangano creates a tree diagram with SVG. As a way to quickly test this ...

3. Avoid looping xml in jstl    stackoverflow.com

I would like to do something like this:

<x:out select="$productXML/product/sizes/size[<c:out value='${param.sizeIndex}'/>]" escapeXml="false"/>
but I think the only way to do it is like this:
<x:forEach var="size" begin="${param.sizeIndex}" end="${param.sizeIndex+1}" select="$productXML/product/sizes/*">  
    ...

4. How can I insert a XML file in a XHTML page