Tagged Questions
2
votes
1answer
541 views
Rendering XML response on Grails problem
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 ...
1
vote
1answer
35 views
Namespace handling in Groovys XmlSlurper
The situation:
def str = """
<foo xmlns:weird="http://localhost/">
<bar>sudo </bar>
<weird:bar>make me a sandwich!</weird:bar>
</foo>
"""
def xml = new ...
1
vote
1answer
307 views
meta programming XMLSlurper results
I've Slurped up a twitter feed where each entry looks like:
<entry>
<id>tag:search.twitter.com,2005:30481912300568576</id>
...
1
vote
3answers
421 views
Grails/Groovy problem with XmlSlurper .. help
Using grails 1.2.2 with groovy 1.6.8 .. Reading a a web service and trying to process response ..
Response is shown below and validates as correct xml .. (sorry for length) ..
...
1
vote
2answers
1k views
groovy XmlSlurper not parse my xml file
I have an xml, and I can't parse this file with xmlslurper.
Here a copy of my xml file :
<Entrezgene-Set>
<Entrezgene>
<Entrezgene_summary>The protein encoded by this gene is a ...
0
votes
1answer
1k views
Using XmlSlurper in Groovy / Grails to parse a Pingdom XML response
I have used XmlSlurper successfully before, but am struggling to parse the following XML - it is a response from a call to the Pingdom API. I have tried following the namespace declaration examples, ...