alright, a few updates here: I guess the JSTL librarys worked all the time. These URLS defintely work:
[code]<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>[/code] Instead of importing the source files from the DMS via DAM I simply put them to "/WEB-INF/xml/" directory. So in my paragraph JSP code I can refer to them locally. [b]So the transformation is working with this code:[/b] [code]<%@ taglib prefix="cms" uri="cms-taglib" %> <%@ taglib prefix="cmsu" uri="cms-util-taglib" %> <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %> <cms:editBar /> <c:import url="/WEB-INF/xml/Rubrik_Synonym_TB_300911.xml" var="inputDoc" /> <c:import url="/WEB-INF/xslt/synonym.xsl" var="stylesheet" /> <br/> <x:transform xml="${inputDoc}" xslt="${stylesheet}"> </x:transform>[/code] But it is not working by importing the files from the DMS via DAM. [b]Can anybody tell me why??[/b] -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=35c62a29-777c-4787-93c9-5215b7823acd ---------------------------------------------------------------- For list details, see http://www.magnolia-cms.com/community/mailing-lists.html Alternatively, use our forums: http://forum.magnolia-cms.com/ To unsubscribe, E-mail to: <[email protected]> ----------------------------------------------------------------
