Questions tagged as 'xml'

2
answers

What is Web Services Description Language (WSDL)?

Related to: Differences in Web Service Types: SOAP, REST, XML What is WSDL? What is your relationship with REST and SOAP? Where can I find the WSDL documentation?
asked by 15.08.2014 / 14:43
4
answers

Why and when to use XML instead of JSON?

JSON has at least two advantages over XML: parsing is faster Occupy less bytes There are still people who prefer XML. Is there any reason to prefer XML? Or in what situations is it most appropriate (and why)?     
asked by 06.06.2014 / 17:58
1
answer

What is Maven for?

I often find large projects that have the pom.xml file, but I never understood the utility of it, I just discovered that it is something related to maven. Anyway: What is Maven for? What is the pom.xml file for?
asked by 20.04.2015 / 05:19
2
answers

Xpath with Python

I have the following XML (simplified): <produto refid="cat01" idprod="tv01"> <marca>xxx</marca> <modelo>xxxx</modelo> <genero>xxx</genero> </produto> <v:utilizador iduser="U00000"...
asked by 28.02.2015 / 13:00
1
answer

How to unify redundant namespaces of an XML?

I have the following XML: <?xml version="1.0" encoding="UTF-8"?> <DataTable> <Columns> <DataColumn xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <ColumnName>NomeColuna1</ColumnName>...
asked by 14.01.2014 / 14:50
2
answers

What is the difference between an XML file and an XSD file?

We know that these two types of files are correlated - .XSD e XML . What is the difference between the two? Is it possible to work with an XML without an XSD?
asked by 30.06.2015 / 15:56
3
answers

Reading XML NFe?

I'm doing an XML reading from Nfe however, I'm currently reading and playing in a txt , but I can not read those tags below: <?xml version="1.0" encoding="UTF-8"?> <nfeProc xmlns="http://www.portalfiscal.inf.br/nfe" versao="2....
asked by 16.12.2014 / 17:05
3
answers

What is XHTML and when should it be used?

What I know is that XHTML needs to be valid XML. This implies, for example, that all tags need to be closed. For example: Errado: <br> Certo: <br/> But what is the use of this? What is it for? When should it be used?     
asked by 11.07.2014 / 13:30
1
answer

What is it for! [CDATA []] in XML?

In some examples of platforms, you have tags% , but what's the use of this in XML? Model of an XML to be followed by a platform. <?xml version="1.0" encoding="UTF-8"?> <loja> <produto> <link><![CDATA[htt...
asked by 20.08.2015 / 03:36
2
answers

What is the difference between using [CDATA []] inside a tag script?

What is the difference between using or not using the script contents with this CDATA? <script type="text/javascript"> //<![CDATA ... //]] </script>     
asked by 11.12.2015 / 17:34