Tagged Questions
2
votes
1answer
67 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 ...