Tagged Questions
1
vote
2answers
63 views
XML Parsing with same element tags but unique data
I am parsing xml that has many of the same tag. Inside the tag there is a name of a value and then the value. My issue is is that I need to separate those values.
This is an example of the xml I have ...
0
votes
1answer
33 views
XmlSlurper parsing a query result
I have a query that bring back a cell in my table the has all xml in it. I have it so I can spit out what is in the cell without any delimiters. Now i need to actually take each individual element and ...
0
votes
1answer
50 views
I'm trying to loop over a XMLSlurper find statement using a list array. Can you do this?
I'm trying to loop over an expression like this changing the string 'question-hyperlink' to
an item in a list I'm new to groovy and can't find a way that works. Do you really have to hard code this ? ...
2
votes
1answer
50 views
XmlSlurper: How to change the text of a dynamic node
<Messdaten>
<EL_NR>NAYP99</EL_NR>
<EL_NR_Original/>
<Erfassungsdatum>2012-12-12 11:58:54.000</Erfassungsdatum>
<Massnahme>Lot_Hold</Massnahme>
...
0
votes
1answer
44 views
XmlSlurper Append node with namespace
I am trying to append node to my request using xmlslurper
Service.appendNode{
ifx:DepAcctId{
if (acctId!="<!-->"){ifx:AcctId("123")}
}
}
This results in
<DepAcctId>
...
0
votes
1answer
23 views
xmlslurper not coying namespace declarations
I am having this XML,
<soapenv:Envelope xmlns:v2="http://ns1/" xmlns:ifx="http://www.somenamespace.org/IFX_150">
<soapenv:Header></soapenv:Header>
<soapenv:Body>
...
0
votes
1answer
75 views
Nested GPath expressions with XmlSlurper and findAll
I'm trying to analyse an XML tree using XmlSlurper and GPath, and the behaviour of the findAll method confuses me.
Say, for example, that you have the following XML tree:
<html>
...
-1
votes
1answer
51 views
Groovy. Appending nodes while using MarkupBuilder and XMLSlurper
My question is with Groovy and appending a node while using MarkupBuilder and XMLSlurper.
Can someone tell me why when I run this code up to the first println my output shows the target-line as:
...
0
votes
0answers
89 views
how to add a xml node in soap ui for a test step response
i have a testStep1 for which i get 200 response. Now i want to add another child node to this response so that i can use this updated xml as an request in testStep2. How can i achieve this in soap ui?
...
0
votes
0answers
36 views
Confluence plugin not able to find .dtd file
I am writing a plugin for our companys Confluence.
In this plugin i need to parse some Confluence Storage Format XML.
Therefor i got the confluence.dtd and some .ent Files from here:
...
0
votes
2answers
73 views
Extract URL from href-tag in groovy
I need to parse a malformed HTML-page and extract certain URLs from it as any kind of Collection.
I don't really care what kind of Collection, I just need to be able to iterate over it.
Let's say we ...
5
votes
1answer
109 views
Change XML tag name
I want to transform an XML document which I have parsed with XmlSlurper. The (identical) XML tag names should be replaced with the value of the id attribute; all other attributes should be dropped. ...
0
votes
1answer
312 views
Groovy Node.depthFirst() returning a List of Nodes and Strings?
I'm hoping someone will just point out something obvious that I'm missing here. I feel like I've done this a hundred times and for some reason tonight, the behavior coming from this is throwing me for ...
0
votes
1answer
149 views
Selecting using XmlSlurper like a WHERE clause
Given the following HTML snippet, I need to extract the text of the content attribute for the meta tag with attribute name equal to description and the meta tag with attribute property equal to ...
2
votes
2answers
1k views
How can I use relative paths to external response files for soapUI MockService
What I've Done
I am using soapUI (3.6.1 Free version) mock services to serve up specific data to 2 client applications I am testing. With some simple Groovy script I've set up some mock operations to ...
0
votes
3answers
867 views
Properly iterating through XML with namespaces in Groovy
I have the following xml code:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<cms:RelatedConfigurationItemList xmlns:cms="some ...
1
vote
2answers
369 views
Finding xml element value case insensitive using XmlSlurper/GPath?
I am parsing a piece of XML using XmlSlurper and need to find an xml elements value.
The challenge in this is that i am not always sure if the casing in the xml document will be correct, so i need to ...
2
votes
2answers
244 views
How to set user agent in: new XmlSlurper().parse(URL)
I am launching requests to a web service using Groovy/XmlSlurper:
new XmlSlurper().parse("http://en.wikipedia.org/w/api.php?action=...")
I would like to set the user agent to let the website know ...
2
votes
2answers
863 views
Converting xml to domain object in Grails
I'm a grails newbie working on a project for fun. I'm serializing a class like this:
def msg = (listing as XML).toString()
the trying to deserialize a class using the XMLSlurper like this:
def ...
2
votes
2answers
1k views
Parsing (very) large XML files with XmlSlurper
I am kind of new to Groovy and I am trying to read a (quite) large XML file (more than 1Gb) using XmlSlurper, which is supposed to work wonders with large files due to the fact that it doesn't build ...
1
vote
1answer
516 views
Groovy: XmlSlurper, Failed to replace the node first and try to append the same node again. any one faced this issue
//Unable to add replaced nodes back to xml using xml slurper. Throws stackoverflow exception. Now idea how to do it
def xml = """<container>
<listofthings>
...
1
vote
1answer
376 views
How keep groovy/XMLSlurper from stripping html tags from a node?
I'm reading an HTML file from a POST response and parsing it with XMLSlurper. The textarea node on the page has some HTML code put into it (non-urlencoded - not my choice) and when I read that value, ...
1
vote
2answers
397 views
How would I find the text of a node that has a specific value for an attribute in groovy?
I'm using XMLSlurper. My code is below (but does not work). The problem is that it fails when it hits a node that does not have the attribute "id". How do I account for this?
//Parse XML
def page = ...
1
vote
1answer
212 views
Groovy XMLSlurper namespace error without namespaces
I have following XML that XMLSlurper is unable to parse. I think XMLSlurper thinks the xxx:yyy is some kind of namespace. Is there any chance to change this behavior?
<node>
<application ...
1
vote
1answer
127 views
GPath to find if a table header contains a matching string
I'm parsing an HTML file into a well-formed XML document using NekoHTML parser. However I can't quite figure out the GPath so that I can identify the table that has the "Settings" string.
def parser ...
5
votes
2answers
639 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 ...
2
votes
1answer
467 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
204 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 ...
3
votes
1answer
707 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 ...
3
votes
2answers
546 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).
3
votes
1answer
2k views
Groovy XmlSlurper: Find elements in XML structure
Let's say there is the following XML structure:
<Data>
<DataFieldText>
<DataFieldName>Field #1</DataFieldName>
...
0
votes
2answers
1k 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 ...
1
vote
2answers
263 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" ...
16
votes
1answer
4k 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?
...
1
vote
2answers
347 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 ...
0
votes
1answer
280 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 ->
...
3
votes
1answer
395 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 ...
0
votes
1answer
350 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
441 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 ...
1
vote
2answers
394 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 = ...
2
votes
1answer
225 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 ...
0
votes
1answer
2k 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 ...
1
vote
3answers
189 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 ...
0
votes
1answer
1k 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 ...
1
vote
0answers
331 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 ...
4
votes
1answer
545 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:
...
3
votes
1answer
668 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 ...
1
vote
1answer
1k 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"?>
...
4
votes
2answers
2k 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 ...
1
vote
1answer
537 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>
...