Questions tagged as 'xml'

2
answers

Error in xml file: error: attribute '...' not found [closed]

Good morning, I have this xml file: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.andr...
asked by 31.01.2018 / 15:49
1
answer

Add a node created to an existing node in XML document

Description. I must add a node to an XML document. The node that I have to add I build it perfectly, but I do not know how to insert it in the exact location I need inside the XML document. Code. With this code I build and insert the new...
asked by 17.01.2018 / 13:54
1
answer

How to declare an element a *, b ?, (a | b) in XSD

I want to say how this statement would be in DTD to XSD <!ELEMENT ejemplo (a*, b)> <!ELEMENT ejemplo (a, b?)> <!ELEMENT ejemplo (a | b)> I hope you can help me     
asked by 13.06.2017 / 14:22
1
answer

like parsing an XML document to print it in console

Good afternoon, I need help to parse a document .XML in Python, I just need to know the best way to printearlo in the console (bash or cmd). the question is that I have already managed to parse the document, but in it there are elements that are...
asked by 30.05.2017 / 20:28
1
answer

I miss Android Studio [closed]

Yesterday android studio asked me for an update then I installed it and since then it does not want to work, when launching the application to the emulator the buttons or edit text are placed in the upper left together     
asked by 20.04.2017 / 19:40
1
answer

Error generating classes with xsd

The Spanish Tax Agency (AEAT) has published a series of xsd for the new system of Immediate Information Supply (SII) that will come into force as of July 2017. On other occasions as with the entry into force of the SEPA I have generated my class...
asked by 14.02.2017 / 09:18
2
answers

"Namespace 'TagsEditText' is not bound" but when replacing it with app everything is correct

Using the following library, link I follow steps 1, 2 and 3 indicated by the developer but in the layout receipt the following error: "Namespace 'TagsEditText' is not bound" The written code is the same as indicated in step 3: &l...
asked by 03.11.2016 / 17:44
1
answer

Transform XSLT URL

I want to transform a url from xslt with this format: [sitio]/PublishingImages/[nombreimagen].jpg to this other: [sitio]/PublishingImages/_t/[nombreimagen]_jpg.jpg At first try to use replace, but you can not use it in version 1.0 so t...
asked by 26.10.2016 / 14:05
1
answer

Read xml file that is subdivided in two xml

I am trying to read an xml file which is divided into two parts, it is as follows: <?xml version="1.0" encoding="utf-8"?> <CPU_ConfigData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchem...
asked by 13.09.2018 / 08:30
1
answer

Exception when reading a certain DataSet column loaded with the contents of an XML file

I have an XML file where I upload your data in a DataSet DataSet ds = new DataSet(); ds.ReadXml(Server.MapPath("~/datos.xml")); When trying to read the column 'NumCodigo' of the form: ds.Tables["NumCodigo"].Rows[0]["NumCodigo"] I have...
asked by 30.08.2018 / 17:47