Re: JSP: How to write custom tag that reads its body text without evaluating embedded EL expressions

2008-10-21 Thread Karl R. San Gabriel
Hello Simon, I tried to do the same thing using a Tag file instead of a Tag class. I created a tag file named TagFileTest.tag and put it in under /WEB-INF/tags directory with the ff content: <%@ tag body-content="tagdependent" %> The content of the JSP file is a follows: <%@ taglib prefix="tes

JSP: How to write custom tag that reads its body text without evaluating embedded EL expressions

2008-10-21 Thread Simon Kitching
Hi, This is a jasper/JSP question; I hope this is the right list for this... I am trying to write a custom JSP tag that can get its content as plain text. Example: I want to create a tag class for of:flowConfig which just gets the embedded xml text without *any* processing app