Just for the record, I found the problem:<snip/>
if you try the example below it will work -
but if you replace the parameter name with
one that is hyphentated eg. file-ID, then it
won't. I guess allowable syntax for parameter
names is documented in that Cocoon Sitemap Schema I have never studied ;-)
Code in the jx template:
<test target="${cocoon.parameters.fileID}"> </test>
I don't think it has to do with the sitemap, but rather with the JEXL syntax used by JXTG. The hyphen is probably interpreted as a minus sign, which is perfectly understandable. If you want to keep that hyphen, you can probably do something like ${cocoon.parameters.getParameter("fileID")}
Ugo
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
