I've been tasked with creating a JSP tag that will allow developers to pass a URI to an xml document, and have an object returned that can be navigated using EL.
I have been using groovy and grails quite a bit so I thought of trying something like
rval = new XmlSlurper().parseText(myXml);
and throwing that into the request so that back in the JSP they might do something like:
<mytag var="var"/>
${var.rss[0].title}
but that approach doesn't work.
Does anyone have any suggestions?