Tagged Questions
0
votes
1answer
31 views
Parsing XML file with groovy
I have the following XML file. I was able to read it using the xmlParser class.
def records = new XmlParser().parseText(xml)
I don't know how to extract the row attributes and value. Here is the ...
0
votes
1answer
33 views
Dynamic list in SOAPUI XML response
I'm mocking a soap service in SOAPUI. I have a list of objects in my context. I'd like to loop over this list to build the XML response.
Something like this :
Response Script :
...
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
29 views
How to extract namespace from XSD?
I have an XSD that I want to use in serializing my domain objects into XML. I'm using StreamingMarkupBuilder to generate the XML, but I want to be able to extract namespaces out of the XSD to use in ...
0
votes
1answer
16 views
How to specify a StreamingMarkupBuilder tag name at runtime?
I'm trying to build an XML document using StreamingMarkupBuilder. I don't know what the element's tag name is until runtime, so I am trying to find a way to specify it in ...
0
votes
1answer
41 views
How to convert an SQL Datetime value to an XML datetime Value in Groovy Script
I'm new to Groovy script and I was wondering how I could convert a value I got from a SQL database to and XML value?
For example:
I have a variable start_date which contains '2013-04-13 14:34:08'
...
1
vote
1answer
45 views
GPathResult ..presence or absence of a node
My GPathResult can have a name node in one of the 3 ways
1) name node is present and has a value
ex: John
2) name node exists, but has no value in it.
3) No name node exists at all.
In Groovy ...
0
votes
1answer
49 views
Groovy: Add node to NodeChildren
I am new to Groovy and somehow struggling with the syntax. I have an object of type NodeChildren (in groovy.util.slurpersupport) which represent an XML structure like that:
<?xml version="1.0" ...
0
votes
0answers
22 views
Taking strings and turning them into XML references
In Groovy, I am trying to take a string that contains an XML reference such as "person.name.first" and turn it into a an XML reference using XmlSlurper.
The dots are the difficult item - cannot ...
1
vote
1answer
32 views
Generate xml element named 'properties' with StreamingMarkupBuilder
I need to generate some xml that includes an element called "properties". When I attempt the following, I notice that groovy is trying to get the properties of my class, as evidenced by its call to ...
0
votes
1answer
53 views
Groovy “find” closure…Traversing through recursive xml
If i have my GPath like this:
<Apple>
<Mango>
<id>5 </id>
</Mango>
<Mango>
<id>10 </id>
</Mango>
</Apple>
...
0
votes
1answer
52 views
Using OpenNLP in Groovy
I'm trying to write a (hopefully) simple script that will parse a short paragraph. I need it to do sentence detection and tokenization in two separate steps so that the user can edit the output of ...
1
vote
1answer
132 views
Validating a XML against a XSD schema and catching validator expection with groovy
def validateXml(xml){
String xsd = "src/main/ressources/fulltext-documents-v1.2.3.xsd"
def factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI)
def schema = ...
1
vote
2answers
125 views
Java Regex-based string replacement
Looking for a regex based String replacement in Java on the below use-case.
I'm doing some Groovy based XML processing and due to some custom processing (won't go much in detail on this), the ...
0
votes
1answer
70 views
convert a node object to a JSON object in groovy
With this code, it returns a node object of a xml document
def rootNode = new XmlParser().parseText(text)
How can you parse this object into a JSON object (perhaps using JsonBuilder) ?
I did try ...
0
votes
1answer
45 views
Groovy Parsing XML and Get Attributes
I have an xml like this:
<MMP>
<MERCHANT>
<RESPONSE>
<url>http://203.114.240.77/paynetz/epi/fts</url>
<param name="ttype"></param>
<param ...
2
votes
1answer
68 views
Groovy script not parsing XML correctly
I am trying to use Groovy to parse the following XML:
<list>
<list>
<widget>
<fizz id="3" />
<buzz>false</buzz>
...
0
votes
1answer
68 views
tree sorting in groovy
Giving a LinkedHashMap, i' m trying fo build a full xml tree in groovy.
1) the map:
def trees = [:]
trees.put(1,[id:'1',path:'ROOT/folder1',name:'folder1',isFolder:'true'])
...
0
votes
1answer
105 views
Parse map of strings and transform to xml
Giving a map of id and string paths, i need to parse and build an xml doc.
1) Here is the map of paths with ids (collected from database):
def trees = [:]
trees.put(1,"TEST/folder1")
...
1
vote
1answer
127 views
Iterate through EACH xml node with groovy, printing each node
I have a very simple ( I thought ) xml file like this...
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<Things>
<thing indexNum='1'>
<a>123</a>
...
0
votes
1answer
52 views
Copy data from a currently open browser window and paste into another program?
I'm researching a method to accomplish what the title describes. Here's more detail:
I have an Internet Explorer window open with some fields filled with data. I have a programmed called SoapUI open ...
1
vote
1answer
257 views
How to use Groovy XML MarkupBuilder to create valid HTML script tags?
I am using Groovy 1.8 XML MarkupBuilder to build an HTML page which includes a <script> tag.
When I load the page in Firefox 18 I see a blank page instead of the expected results.
This seems ...
0
votes
1answer
128 views
How can I avoid Groovy's XmlNodePrinter converting encoded newlines 
 into an actual newline
I'm using XmlParser to read in an XML document that has some content like this:
<instructions size='1'>
<instruction key='manifest'>
Bundle-SymbolicName: ...
0
votes
1answer
210 views
Java.lang.NoClassDefFounderError: Could not initialize class groovy.net.http.ParserRegistry
I am currently getting this error message in SoapUi while using Groovy.
Initially the code didnt compile i.e. errored with 'unable to resolve class HTTPBuilder'. To resolve this i downloaded the jar ...
0
votes
1answer
70 views
Access xml file from groovy script
I need a code example of groovy script which can access a xml file stored anywhere in my file system .
In this xml file i have the database credentials , my script need to access the database .
below ...
1
vote
1answer
166 views
Groovy's MarkupBuilder exception on generating “id” XML tag
I'm trying to construct a XML feed, and Groovy's MarkupBuilder is giving me headaches:
def newsstandFeed(def id) {
def publication = Publication.get(id)
def issues = ...
0
votes
1answer
204 views
Groovy: dynamically create XML for collection of objects with collections of properties
I have a collection of fields with properties. Each property is a single value or a collection of objects (either null, one or many)
I need to create a tree like xml for that.
All examples I found ...
0
votes
1answer
34 views
Grails Embed images in csv and xml
is there anyway to have thumbnail image 50x50 in csv and xml? I'm using grails.
0
votes
1answer
74 views
convert XML to equivalent groovy config
I have some test config in an XML doc like this:
<WapRules>
<WapRule>
<RuleTypeId>1</RuleTypeId>
<IsExact>false</IsExact>
...
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
67 views
Posting XML with Groovy HttpBuilder
i am trying to post some xml data using Groovy's HttpBuilder.
POST XML data with Groovy HTTPBuilder answers the question on how to generate attributes (as id below)
<person ...
0
votes
1answer
93 views
Groovy and XML: Not able to insert processing instruction
Scenario
Need to update some attributes in an existing XML-file. The file contains a XSL processing instruction, so when the XML is parsed and updated I need to add the instruction before writing it ...
0
votes
1answer
102 views
In groovy how to read xml and place that in JMS message
Hi all i'm new with groovy
I try to send a message to the JMS like this it works
MessageProducer messageProducer =queueSession.createProducer( queueSend );
TextMessage textMessageSend = ...
2
votes
1answer
504 views
Comparing two XML strings/files in Groovy/Java
I'm writing unit tests for checking some XML builder.
Now I'm running into the problem of syntactical differences between the expected result and the actual result, despite their identical semantics.
...
1
vote
1answer
127 views
Groovy: copy XML elements from one doc to another
I am new to Groovy and am stuck with a simple problem. All I wanna do is extract certain elements from one XML file and created a new file with it. Here's an example XML, let's use a Maven pom file:
...
2
votes
2answers
410 views
How to render a List with Groovy's MarkupBuilder
I am converting a Map to XML using the Groovy MarkupBuilder. This Map can contain simple key/value pairs, other Maps, or Lists of Maps. I am piggybacking from the code here.
import ...
0
votes
1answer
79 views
What do I put into the XML to read from an array?
I am using soapUI and have 130 IDs that I would like to choose from and have the test pick a random one from an array.
I have a GroovyScript which looks like so:
IDNumbers = [1,2,3,etc.]
rand = new ...
1
vote
1answer
189 views
Groovy - Remove invalid xml characters
The big problem I am having is when users copy things straight from WORD into fields, causing the xml I am generating to be invalid. I have found a multitude of different approaches to this problem, ...
4
votes
1answer
425 views
Adding dynamic elements and attributes to groovy MarkupBuilder or StreamingMarkupBuilder [closed]
I've seen many example using Groovy's MarkupBuilder for building an XML document, but they all seem to use static attributes for every element in the document (the attribute names are all known at ...
0
votes
2answers
591 views
Jackson XmlMapper Converting XML to POJO, node text's key is “”
I'm trying to read in XML data from a service (and I cannot change the data) and having a problem with the Jackson XmlMapper. If I have XML like so:
<entry>
<title ...
3
votes
2answers
310 views
XML parsing in Java via Groovy
I'm trying to parse an XML using Groovy and the ScriptEngine API of Java.
The code below does exactly that but I wanted to know if there are any better ways of doing the same. And also if there are ...
0
votes
2answers
755 views
iterating over xml file from top to bottom with groovy
I have a xml file, which represents a simple "script" where specific elements represents different commands.
I want to use groovy to parse and "interpret" the xml file.
How can i iterate over the ...
0
votes
1answer
779 views
How to validate response XML with request XML in SOAP UI Pro
Our project demands thorough REST API testing. So we are using SOAP-UI Pro for REST web-service testing.
I want to test the following scenario:
Storing an 'XML' file and make sure that to fetch the ...
0
votes
1answer
460 views
Groovy script to get the request xml
I can get the response xml using Groovy script. I need to get the request XML since I need to add 'assertion script' to my soap ui testing.
I am using the following code to get the response xml
def ...
1
vote
1answer
133 views
Groovy Grails test case error when converting to xml
I am trying to write a test case for this method, which works when it is hit from non test case code...
import grails.converters.XML
Class itemService(){
def getData(Map){
def helperBean ...
0
votes
0answers
175 views
capture values under similiar XPath in an array with groovy scripting
In soapUI, using groovy, I have the following piece of code to capture the value of a XPath. There are 23 of these values under similiar XPath in an array like structure (ns5:search-result[1], ...
0
votes
1answer
140 views
How to read multiple rows in XML in groovy
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- generator=Moneycontrol XML FEED Generator -->
<rss version="2.0">
<channel>
<title>Moneycontrol ...
0
votes
1answer
133 views
reading an xml value in groovy
i have checked around the site and although many people are looking for similar solutions, a solution to my specific problem has not been posted, nor has a similar question been asked.
i have an XML ...
0
votes
1answer
112 views
How parse xml file in groovy and put it in a pojo?
Someone told me that groovy xml parser is better and easy, my question how to use groovy inside java to parse an xml file and put it in a pojo object ?
thanks.
2
votes
3answers
447 views
Grails Error: invalid XML character (Unicode: 0x5c)
I have done a little research on this problem but it seems that all the other answers include changing how the response get sent to you. I am making a call to a third party webservice that returns ...


