Tagged Questions

3
votes
1answer
289 views

Groovy XmlSlurper vs XmlParser

I searched for a while on this topic and found some results too, which I am mentioning at the end of post. Can someone help me precisely answer these three questions for the cases listed below them? ...
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 ...
2
votes
1answer
413 views

Can generic XML by parsed as nicely as simple XML in Groovy?

Given a nice, simple XML structure, XmlSlurper() can allow me to read values from it very easily. def xml = "<html><head><title>groovy</title></head></html>" def ...
2
votes
2answers
2k views

How can I check for the existence of an element with Groovy's XmlSlurper?

I'm trying to determine whether an XML element exists with Groovy's XmlSlurper. Is there a way to do this? For example: <foo> <bar/> </foo> How do I check whether the bar ...
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
2answers
40 views

How do you remove attributes from a node using Groovy's XMLSlurper and GPathResult?

I need to remove the attributes from a body node in some parsed HTML (converted to XML).
1
vote
1answer
106 views

Groovy XmlSlurper: Find elements in XML structure

Let's say there is the following XML structure: <Data> <DataFieldText> <DataFieldName>Field #1</DataFieldName> <DataFieldValue>1</DataFieldValue> ...
1
vote
2answers
47 views

How to read the hyphenated attribute names (Eg. model_name) while parsing xml using XmlSlurper

I am trying to read an attribute while parsing XML using XmlSlurper in Groovy. When I try to read the hyphenated attribute model-number I am getting an exception. <router name="b" id="x" ...
1
vote
2answers
119 views

XmlSlurper.appendNode doesn't change size

I work with XML using XmlSlurper. It works fine until I update it. The appendNode doesn't reflect the size. How to worked with XmlSlurper after structure update? XML definition: def CAR_RECORDS = ...
1
vote
0answers
210 views

GPathResult to org.w3c.dom.Node

This might be a very simple, but I'll ask anyway. I have the following code that does a post to a web service. I am using HttpBuilder to build the request and post the payload. The method returns a ...
1
vote
1answer
246 views

Sorting XML in Groovy

I have looked at the documentation on sorting XML with Groovy def records = new XmlParser().parseText(XmlExamples.CAR_RECORDS) assert ['Royale', 'P50', 'HSV Maloo'] == records.car.sort{ ...
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
2answers
154 views

Parse UTF-8 xml file with XmlSlurper

I'm trying to parse google atom with XmlSlurper. My use case is something like this. 1) Send an atom xml to server with rest client. 2)Handle request and parse it on server side. I develop my ...
0
votes
1answer
268 views

how to traverse inside a xml node and check for an attribute value?

I have this xml, i took it in xml a GPathResult object how can I get Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition based on checking with the field value as OS Name using groovy xml ...
0
votes
1answer
340 views

Finding XML element from RESTClient with XMLSlurper

I'm writing a Spock test, in which I have a REST web service that returns an XML like this: <templates> <userTemplate id="1109"> <settingsXml/> <type>USER</type> ...
0
votes
2answers
928 views

Groovy delete a tag in a XMLSlurper, replaceNode {} does nothing

I am parsing some XML with XMLSlurper (groovy 1.7.4) and I need to delete a tag (not make it empty!). Here is a code sample illustrating it: import groovy.xml.StreamingMarkupBuilder def CAR_RECORDS ...
0
votes
2answers
324 views

mkp.yieldUnescaped not working

I am really stuck here. I am creating an XML document with Groovy 1.7 and everything is working except one section is being escaped when it shouldn't. I am starting out like this: ...