Re: [cache] Is the Cache Taglib working?

2002-05-29 Thread Shawn Bayern
Loren, Thanks for the report. Indeed, this is a (somewhat embarrassing!) bug. I've fixed it in the main CVS archive. If you could test it and let me know whether it now works the way you expect, that would be wonderful. Thanks again, -- Shawn Bayern JSP Standard Tag Library

xtags:parse

2002-05-29 Thread Chen, Gin
Why doesnt this work? xtags:parse uri=bean:write name='flowxml' scope='session'/ id=mydoc/ and yet bean:write name='flowxml' scope='session'/ alone will return the correct value and using: jsp:useBean id=flowxml class=java.lang.String scope=session/ xtags:parse uri=%= flowxml % id=mydoc/

Re: xtags:parse

2002-05-29 Thread Shawn Bayern
You can't use one JSP tag within another. I would advise moving to JSTL, where you can retrieve information out of the session using the expression language. In JSTL, what you're trying to do looks like this: x:parse xml=${sessionScope.flowxml} var=mydoc / -- Shawn Bayern JSP Standard Tag