Tagged Questions
5
votes
1answer
5k views
Groovy: Correct Syntax for XMLSlurper to find elements with a given attribute
Given a HTML file with the structure html->body->a bunch of divs what is the correct groovy statement to find all of the divs with a non blank tags attribute?
The following is not working:
def nodes ...
4
votes
1answer
519 views
XmlSlurper.parse(uri) with HTTP basic authentication
I need to grab a data from XML-RPC web-service.
new XmlSlurper().parse("http://host/service") works fine, but now I have a particular service that requires basic HTTP authentication.
How can I set ...
4
votes
1answer
2k 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" ...
3
votes
1answer
296 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?
...
3
votes
1answer
300 views
groovy - problem parsing xml
I am new to Groovy and I am trying to parse both a valid rest resource and an invalid one.
For example:
this code works fine -
def entity = new ...
2
votes
1answer
79 views
XmlSlurper: Changing text in element with namespace
I don't understand why xml."con:cred"."ser:user" = "modified_username" doesn't change the text. Can someone explain this?
input = """
<kuk:acc xmlns:kuk="kuk">
<con:cred ...
2
votes
1answer
32 views
how to find offending line when using XmlSlurper
I am parsing a dirty html page with XmlSlurper, and I get the following error:
ERROR org.xml.sax.SAXParseException: Element type "scr" must be followed by either attribute specifications, ">" or ...
2
votes
1answer
159 views
Groovy XMLSlurper appendNode - how force it to take effect?
I understand that XML document changes are not immediate when using Groovy's XMLSlurper and StreamingMarkupBuilder. However, I'm not happy having to do a lot of processing whenever I change a ...
2
votes
1answer
108 views
can I use XmlSlurper directly on a w3c.dom.Node object
I am experimenting with GroovyWS in the hope of completely replacing Axis2 client code.
One of the Webservice operations I call returns fragments of XML, which I need to turn into Groovy Beans.
I am ...
2
votes
1answer
207 views
extracting parts of HTML with groovy
I need to extract a part of HTML from a given HTML page. So far, I use the XmlSlurper with tagsoup to parse the HTML page and then try to get the needed part by using the StreamingMarkupBuilder:
...
2
votes
2answers
2k views
Groovy pretty print XmlSlurper output from HTML?
I am using several different versions to do this but all seem to result in this error:
[Fatal Error] :1:171: The prefix "xmlns" cannot be bound to any namespace explicitly; neither can the namespace ...
2
votes
1answer
415 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
43 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
107 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
48 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
112 views
Jsoup vs groovy XmlSlurper?
I am looking at parsing some xml content for my application (based on groovy) and I am stuck at this point where I have to choose between JSoup and groovy's native XMLSlurper.
RSS Feeds parsed are of ...
1
vote
2answers
123 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
3answers
97 views
Path resolution in eclipse package structure
This is a very simple question for many of you reading this, but it's quite new for me.
Here is a screenshot for my eclipse
When i run this program i get java.io.FileNotFoundException: queries.xml ...
1
vote
0answers
211 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
337 views
Reading XML element with XmlSlurper in Groovy
I'd like to parse an XML document (SOAP request message) for a particular element. The document is stored in requestContent and looks as follows:
<?xml version="1.0" encoding="UTF-8"?>
...
1
vote
1answer
311 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
1answer
254 views
Is it possible to parse sub-trees with Groovy XMLSlurper
Does anyone know whether it is possible to utilise XMLSlurper in a fashion that means individual sub-trees can be pulled from a very large XML document and processed individually?
Imagine you've got ...
1
vote
1answer
614 views
Groovy Xml Parsing with namespaces
I've been trying to do some xml modifications with groovy's XML Slurper.
Basically, i'm going through the xml and looking for tags or attributes that have ? as the value and then replacing it with ...
1
vote
1answer
247 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
3answers
424 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
2answers
157 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
91 views
XmlSlurper and http.get in groovy
I first save a txt file using http.get:
http.get(path: path,
contentType: TEXT,
query: [id:dapId, instance:alias, format:'xml', file:portalFile]) {resp, reader ->
...
0
votes
1answer
91 views
XMLSlurper appendNode does not see changes
I am having troubles using XMLSlurper to update an XML document. Most things work, but in some situations a "find" doesn't find a Node I just appended (appendNode). The new Node is there at the end ...
0
votes
1answer
158 views
Groovy XMLSlurper update document to match schema
I'm having an issue I can't seem to work my way past and hoping some of you knowledgeable mavens can provide a solution.
I have a document with an XSD containing a sequence. As you know, this means ...
0
votes
1answer
287 views
How to read XML file in groovy?
I am trying to read XML file in groovy with below lines of code
def xml=new XmlSlurper().parse("C:\\2011XmlLog20110524_0623")
xml.Document.BillID.each{
println it}
I am getting file not found ...
0
votes
1answer
269 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
3answers
424 views
XmlSlurper never finds node
I'm trying to page scrape some DOM that looks like this:
<span>text</span>
and sometimes looks like this:
<span><p>text</p></span>
However, I just can't seem ...
0
votes
1answer
343 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
1answer
546 views
Iterate all children with a given name using GPathResult returned by XmlSlurper
I've parsed some html using XmlSlurper. Now I want to iterate all the children with a given element name.
What I've got now is the following code snippet
html.'**'.findAll { ...
0
votes
1answer
401 views
Groovy XMLSlurper issue
I want to parse with XmlSlurper a HTML document which I read using HTTPBuilder. Initialy I tried to do it this way:
def response = http.get(path: "index.php", contentType: TEXT)
def slurper = new ...
0
votes
2answers
937 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
1answer
626 views
replace XmlSlurper tag with arbitrary XML
I am trying to replace specific XmlSlurper tags with arbitrary XML strings. The best way I have managed to come up with to do this is:
#!/usr/bin/env groovy
import groovy.xml.StreamingMarkupBuilder
...
0
votes
1answer
305 views
XmlSlurper NodeChild that represents a body tag?
I would like to get a Groovy NodeChild that represents, e.g., a body tag.
However, if I do
html=new XmlSlurper().parseText(blah)
I get html which is a NodeChild.
However html.body is a ...
0
votes
1answer
639 views
XmlSlurper/NekoHTML document fragment parsing - No HTML or BODY tags wanted
Dear All, I am trying to parse the following HTML fragment, and I would like to get the same fragment as output (without HTML and BODY tags). Is this possible? If so, how?
Thank you
Misha
p.s. I am ...
0
votes
1answer
296 views
Groovier way to find next XmlSlurper element in parent?
I am using:
def idx=parent.item.children().indexOf(myElement)
if (idx+1<parent.children().size()) {
def message=parent.children()[idx+1]
println message.text()
}
To find the element message ...
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:
...
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, ...