I'm having problems rendering an XML file parsed via XMLSlurper to an XML variable. Below is my code.

def userFile =new File("test.xml") def xml= new XmlSlurper().parse(userFile)

render xml

The problem is I cannot see the xml being rendered into my flex app.

link|improve this question

29% accept rate
feedback

1 Answer

If you just want to render the xml file you can say:

    def xmlFile = new File("test.xml")
    response.contentType = "text/xml"
    response.outputStream << xmlFile.text

And there's no need for the slurper at all

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.