xml Questions

3

Solved

I have a pom.xml file that includes my project version like this <version> 1.14.0 </version> and I also have a YAML file that autogenerates a GitHub tag when the tests have passed a...
Psia asked 6/5, 2019 at 8:42

2

I'm trying to deserialize MathML using Serde and Quick-XML in Rust. I'm having trouble trying to write the structs because of the recursive nature of MathML. Here's a minimal, reproducible example:...
Communard asked 11/6, 2021 at 7:3

2

Solved

In all the examples and tutorials I have seen of BeautifulSoup, an HTML/XML document is passed and a soup object is returned which can then be used to modify the document. However, how can I use Be...
Calculation asked 30/4, 2013 at 17:18

3

Solved

I'm trying to parse/extract data from an XML file and retrieve necessary data. For example: <about> This is an XML file that I want to extract data from </about> <message>Hello...
Meemeece asked 20/6, 2014 at 20:8

5

Solved

I am using sed command to insert an xml element into the existing xml file. I have xml file as <Students> <student> <name>john</> <id>123</id> </studen...
Lacagnia asked 23/4, 2014 at 4:22

2

Previously, the serialization/deserialization methods used the type Item: public class Item{} Now I have a new class called ItemWrapper derived from Item with an additional property: public cla...
Rebbeccarebe asked 14/8, 2014 at 16:46

3

Currently working on a work training on Maven. I've never used it before and the training is very limited. One of the assessments is asking me to do the following using command line. Create a new...
Olia asked 29/11, 2017 at 14:19

5

Solved

I'm relatively new to Android development and I'm having a hard time putting together a certain interface. I've looked through many similar questions but none of them give me the answer i'm looking...
Deltoro asked 18/9, 2013 at 10:49

2

i'm using GetElementsByTagName to extract an element from an xml. GetElementsByTagName is case sensitive - it throws an exception if the node name is 'PARAMS' instead of 'Params'. i dont want that ...
Cyanate asked 15/9, 2010 at 9:37

2

Solved

I'm new to Android programming and currently trying to get the Actionbar working. My problem is, that although I set an item in the XML file to "always", it constantly ends up in the overflow menu ...
Chronogram asked 22/4, 2014 at 21:55

2

Solved

marshalling and unmarshalling are not working properly with xml namespace prefix go version 1.9.2 See below code: package main import ( "fmt" "encoding/xml") type DeviceId struct { XMLN...
Liddle asked 4/2, 2018 at 15:16

4

I have a requirement to convert OpenOffice Excel data into XML . I have Apache OpenOffice 4.1.1 in my machine (not MS- Office). Sample Data. (First Row is of Tags ) CustData FirstName MiddleName...
Jobye asked 28/9, 2015 at 6:44

2

Solved

When merging Lightswitch branches, often colleagues will add properties to an entity I also modified, which will result in a merge conflict, as the new XML entries are added to the same positions i...
Gravity asked 16/6, 2016 at 4:12

2

I am trying to map a List<List<Object>> to a RecyclerView in Android, but the result is totally messed up. For example, I have a list of list like this (just for explaining, not my real...
Bedmate asked 15/4, 2015 at 23:14

6

Solved

I need an xml drawable (for a cordova splash screen) in android. I Want to display a transparent logo centered on the screen (without stretching), while the rest of the screen has a background colo...
Com asked 23/4, 2015 at 8:23

5

Solved

I am working on a system related to tv recordings. I am parsing the following xml from another system (to which i have no documentation): <Program FileName="2009.11.07-Saturday 07 November 200...
Gondar asked 2/12, 2009 at 12:50

4

Solved

I am new to XML and getting the below error: Error: XML document structures must start and end within the same entity Input XML: <?xml version="1.0" encoding="ISO-8859-1"?> <root&g...
xml
Stulin asked 9/5, 2016 at 13:25

7

My blog feed show error today: This page contains the following errors: error on line 2 at column 6: XML declaration allowed only at the start of the document Below is a rendering of the p...
Havard asked 4/2, 2013 at 11:31

8

Solved

I have some XML in a string in memory exactly like this: <symbols> <symbol>EURCHF</symbol> <symbol>EURGBP</symbol> <symbol>EURJPY</symbol> <symbol&...
Thynne asked 16/12, 2010 at 13:16

2

Similar to JAXB generating JAXB classes to a given XSD, does Jackson provide any utility to generate Jackson classes from XSD or JSON. JAXB class geberator has generated a set of classes for XSD s...
Habitue asked 16/4, 2015 at 13:45

3

I have a drawable in this XML: <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <gradient andro...
Circlet asked 20/3, 2020 at 20:52

3

I'm parsing XML in python by ElementTree import xml.etree.ElementTree as ET tree = ET.parse('try.xml') root = tree.getroot() I wish to parse all the 'xml' files in a given directory. The user s...
Nathanialnathaniel asked 28/3, 2013 at 10:30

6

Im using Phpunit. If I just run my tests with: phpunit --log-junit output.xml this runs within a second. But if I want a code coverage: phpunit --coverage-html ./report --log-junit output.x...
Boulevard asked 5/9, 2014 at 9:37

5

Solved

I am performing a search in an XML file, using the following code: $result = $xml->xpath("//StopPoint[contains(StopName, '$query')]"); Where $query is the search query, and StopName is the na...
News asked 9/3, 2009 at 12:12

10

Solved

I understood that anonymous types are marked private by the compiler and the properties are read-only. Is there a way to serialize them to xml (without deserialize) ? It works with JSON, how can I ...
Lapham asked 8/3, 2010 at 20:58

© 2022 - 2024 — McMap. All rights reserved.