Tagged Questions

4
votes
1answer
3k views

Using XmlSlurper: How to select sub-elements while iterating over a GPathResult

I am writing an HTML parser, which uses TagSoup to pass a well-formed structure to XMLSlurper. Here's the generalised code: def htmlText = """ <html> <body> <div id="divId" ...
2
votes
1answer
68 views

tag0 namespace added for elements in default namespace

I'm trying to parse and modify a Maven's pom.xml using Groovy's XmlSlurper. My pom.xml declares the namespace xsi. <?xml version="1.0" encoding="UTF-8" standalone="no"?> <project ...
1
vote
1answer
60 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 ...