Tagged Questions
1
vote
1answer
30 views
Generating formatted XML in Scala
I have some XML generated with embedded Scala, but it does not put the generated XML on separate lines.
Currently, it looks like this,
<book id="0">
<author>Gambardella, ...
0
votes
1answer
28 views
Get object for element that has failed XSD validation
I'm validating an XML document against an XSD, and then want to delete the nodes that cause the document to fail.
I'm hitting against a problem in that SaxParseException doesn't seem to contain any ...
8
votes
1answer
104 views
Multi-mode XML processors for Java and/or Scala
One of benefits of using Jackson for JSON processing is:
all modes [i.e. streaming, tree, and binding to Java objects] fully supported, and best of all, in such a way that it is easy to convert ...
1
vote
0answers
25 views
escape and replace part of an xml attribute in scala
I have an xml file in which I want to modify parts of several of the attributes. In scala, it is entirely possible to replace the entire attribute very easily. Replacing part of an attribute is ...
0
votes
1answer
35 views
Convert complex Scala XML with namespaces and properties to Scala objects
It seems really easy to convert normal Scala XML to an object:
<object><field>1</field></object> can create something like Object(1) using the case class Object( field: Int ) ...
0
votes
1answer
41 views
Transforming an XML element based on its sibling, using scala.xml.transform.RuleTransformer
Given this XML:
<root>
<item>
<discriminator>d1</discriminator>
<target>t1</target>
<subitem>
<incomplete></incomplete>
...
0
votes
1answer
43 views
How to load a NodeSeq from a string?
Scala code:
val str = "<a>11</a><b>22</b>"
XML.loadString(str)
It will report an exception(of course):
org.xml.sax.SAXParseException:
The markup in the document following ...
1
vote
1answer
47 views
Scala - XML inspection/modification
I am new to both XML processing and Scala in general. I have few questions/things to achieve based on the example xml below
val xml = <begin>
<definition>
...
0
votes
1answer
83 views
scala yield in 'match' scope expects 'case' clauses
I have a code that parses some products from xml with products.. there is one part that matches, and puts the result to products val:
val products =
for (event <- reader) {
event ...
0
votes
1answer
86 views
Scala XML Match nodes using Attributes
I am loading a XML file in scala which looks like this:
<dataset>
<item label="neutral" target="general" tweetid="936466790" username="B_E_X">
<content>Jim Lehrer just ...
1
vote
1answer
48 views
Scala: Dealing with optional XML elements and Case Classes
I'm looking for a better way of building objects from XML in Scala, similar to what's happening in this SO question. I'd like to read xml which may contain missing elements. Currently, I'm using a ...
0
votes
0answers
35 views
Set namespace for certain attributes using Scala XML
I'm using a Scalatra Servlet to pretty-print and save SVG data that is sent by web browsers:
def prettyPrintXmlString(xmlString: String): String = {
val xml = XML.load(new StringReader(xmlString))
...
3
votes
2answers
117 views
Elegant ways to extract element values from Either[String,Option[NodeSeq]]
Lets say I am given an XML as follows:
<a><b><c>hello</c><d>world</d><e>again</e></b></a>
I am given a function: getXmlStream which has ...
0
votes
2answers
54 views
Read the text content in a XML file
Suppose that I have a XML file like the following:
<conf>
<something>
blablabla
</something>
</conf>
I want to retrieve the string blablabla
I tried with:
val data ...
1
vote
2answers
164 views
Simple Xpath query in scala
I'm trying to run a XPath query with scala and it doesn't seem to work.
My Xml looks like ( simplified):
<application>
<process type="output" size ="23">
<channel ...
2
votes
1answer
71 views
Rapid structured data-to-text in Scala: JSON or XML, and which?
I have vast amounts of data that, once lightly processed, I would like to store in a marginally readable ASCII format. Because of the volume of data, the speed of input and output is extremely ...
0
votes
1answer
46 views
Self-closing template elements stopping rendering in Lift
I'm using bind() to replace XML elements in my template with String values, like so:
bind("foo", nodes, "bar" -> "My Content")
When I use a self-closing element in my template, like so:
What I ...
2
votes
1answer
53 views
How to correctly use xml.Utility.unescape?
After I read xml.Utility.unescape's SDK document, I would think that it is the reverse action of xml.Utility.escape, however it does not seem to do anything at all:
scala> ...
2
votes
1answer
114 views
How to revert XML escaped characters (XML unescape)?
I would like a Scala function to return String & when given input &, similarly for all other XML escaped characters.
I have attempted to use xml.Unparsed, maybe in a wrong way, it does ...
0
votes
1answer
79 views
Scala XML Node (with namespace) attributes not accesable
Hiho,
i'm trying to get the attrID from this XML Node/Elem.
scala> (desc(0) \ "_")(0)
res81: scala.xml.Node = <cor:attribute cor:attrDataType="int" cor:attrID="singleEventID" ...
0
votes
1answer
85 views
How to print Scala's XML output to a Play! view?
I've created some helper classes to provide further functionalities to my views. E.g. I've got a class Button that's supposed to render some custom HTML to display a button element. Those classes are ...
1
vote
1answer
73 views
Forcing Scala's XML library to render “singleton tag” (e.g., <br/>) as such
If I use the loadString method to load HTML containing a <br/> tag, Scala's XML lib wants to convert that to the longer, and seemingly less standard <br></br> (which unfortunately ...
2
votes
1answer
56 views
How do I obtain the DOCTYPE of an XML document in Scala?
Let's suppose we open an XHTML file:
val parser = new XhtmlParser(io.Source.fromFile(filename))
val doc = parser.initialize.document
It is possible to get the DTD of the document: doc.dtd. When I ...
3
votes
1answer
95 views
Why XML literals yield mutable objects in Scala?
When declaring a node sequence in Scala as literals you yield a scala.xml.NodeBuffer which is mutable (it extends ArrayBuffer[scala.xml.Node] which in turn extends Seq[scala.xml.Node]):
scala> val ...
1
vote
1answer
40 views
Traverse XML nodes by name/position without needing to check bounds
I use the scala built in xml functionality to traverse nodes, and it is generally enough for my needs.
however, how can implement this simple one-line xpath query in scala?
//a[2]/b[2]/c[2]/d
i ...
1
vote
0answers
109 views
Is it possible to query Scala xml.Node by XPath?
I need to use some complex XPath queries on scala.
Is there a library that can execute XPath queries on Scala XML nodes?
Something like this:
val node: xml.Node = ...;
val result = ...
1
vote
1answer
175 views
Choosing an object serialization format in Scala
I have an application that manages a graph of nodes and arcs, where the nodes have a small number of properties. Now I'm at the point where I need to save out the data, and I need to choose a ...
1
vote
2answers
96 views
What is the fastest way to deserialize string into scala.xml.Elem?
Scala seems to be very good at serializing scala.xml.Elem (on my machine it performs approximately 150k per seconds), however deserialization seems to be quite slow (10k per second) using ...
1
vote
2answers
178 views
Unable to catch exception for bad URL in JAVA class thrown by SCALA class
Im writing a program that should read data from an online XML file. The computation is done by classes written in Scala, should any exception be caught, it must be thrown to a Java class that will ...
2
votes
1answer
120 views
Why JAXB Moxy throws ArrayIndexOutOfBoundsException?
When using Moxy as the JAXB Implementation,
the following class leads to an exception:
@XmlRootElement(name="fraPage")
@XmlAccessorType(XmlAccessType.FIELD)
case class ...
3
votes
1answer
189 views
scala - XML insert/update
do you know any Scala API to insert and (or) update Nodes according to XPath? e.g for a given Node and XPath, this API would create a copy of XML with new node
thanks
1
vote
3answers
106 views
Scala XML literal generation with for-yield
Is there any way to generate XML using the literal syntax as such:
<a>
{
for (i <- Range(1, 3)) yield {
<b>{i}</b>
}
}
</a>
that will return
...
2
votes
1answer
133 views
Scala - Completely remove namespace from xml
I have some xml:
<item name="ed" test="true"
xmlns="http://www.somenamespace.com"
xmlns:xsi="http://www.somenamespace.com/XMLSchema-instance">
<blah>
...
3
votes
3answers
398 views
Scala XML: test for node existence and value
I am parsing a series of XML responses from a external data store. During which I must test for the existence of a child node and - if it exists - test its value. To achieve that I have the following ...
2
votes
1answer
292 views
Scala embed nested XML document in PCDATA
I sadly have a requirement to generate some messy XML.
The main document must contain an embedded XML document. However, the embedded document occurs within a CDATA section. The final result ...
3
votes
3answers
125 views
Building a Map[String,String]
I have the following function. It works fine for printing the values i'm looking to store. I would like to build a Map[String, String]
def storePlayerEntry(n: Node, moved: Boolean) = {
moved ...
0
votes
2answers
171 views
Scala XML parsing not working
I have this XML:
<?xml version="1.0" encoding="UTF-8"?>
<XML xmlns:r="#SchemaA2A">
<Schema xmlns="urn:schemas-microsoft-com:xml-data" xmlns:dt="urn:schemas-microsoft-com:datatypes" ...
1
vote
2answers
94 views
What's a good way to separate html/xml codes from lift snippet?
Lift is a fun web framework to work with. However, it's really hard for newbies to get the html/xml codes out of snippet codes. Is there a recommended way to do it?
3
votes
1answer
806 views
Parse HTML in Scala
Task: HTML - Parser in Scala. Im pretty new to scala.
So far: I have written a little Parser in Scala to parse a random html document.
import scala.xml.Elem
import scala.xml.Node
import ...
3
votes
1answer
95 views
Chaining transformations in AntiXML
I have anti-xml Elem, something like this (auto-generated data):
<library>
<bookshelf number="0">
<book year="1997" title="Puzzled Coordinators" author="Lily ...
2
votes
1answer
158 views
converting xml to Json with lift behaves strange
I'm using scala / lift for a Rest API. Under the hood I'm generating xml which will be converted to json via Xml.toJson() as output.
Now i noticed some strange behavior which drives me nuts.
for ...
0
votes
1answer
398 views
org.json.XML conversion json to xml to json fails
I'm working in scala but a java solution is acceptable.
I've been using org.json to convert my json api into xml so a odd-ball client (VB4 based and unwilling to change) can consume my api in xml.
...
1
vote
1answer
168 views
Scala, combining filters on XML node
XML sample:
<structure-node (n)>
<node-data (1)>
<feature-list (n)>
<feature (n)>
<value (1)>123</value>
...
2
votes
1answer
70 views
XML Data to List in scala
I got a problem which seems to be fairly common but i really don't find a working approach to solve it.
i have a large xml document and will parse it. the document structure is as follows:
...
1
vote
5answers
161 views
Selecting a xml attribute
I have a xml (stored in the variable report) which looks like this:
<wrapper>
<Sample Id="SomeId1">
<Tag Id="SomeTag">
<Lane Id="1">
[...]
...
0
votes
2answers
170 views
How can XML errors be detected when using XMLEventReader?
The documentation for scala.xml.pull.XMLEventReader mentions it can be used as an Iterator[XMLEvent]. However, when doing so, XML errors lead to method calls not terminating. For example:
scala> ...
-1
votes
1answer
107 views
Parsing XML with scala not working
Here is the XML that I am trying to parse:
val response = "<?xml version=\"1.0\" encoding=\"utf-8\"?><createCustomerProfileResponse xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" ...
1
vote
1answer
77 views
Scala Lift - LiftRules.loadResourceAsXml extract value
I have the following:
LiftRules.loadResourceAsXml("/config.xml")
I'm trying to extract values from the following xml sheet:
<?xml version="1.0" encoding="ISO-8859-1"?>
<config>
...
4
votes
2answers
264 views
Ignore DTD specification in scala
I'd like to occasionally ignore the dtd specification while parsing an xml file using Scala. I know that this can be done pretty easily with the java interface by doing
DocumentBuilderFactory dbf = ...
2
votes
1answer
114 views
Build XML literal containing Anti-XML object
Suppose I have an Anti-XML object, e.g.:
import com.codecommit.antixml._
val child = <child attr="val">...</child>.convert
I want to construct an XML object that contains child as a ...



