Questions tagged as 'xml'

3
answers

capture information from sites [closed]

How do Buscapé and other sites get information from sites? is it through the curl or an xml that the store sites make available?     
asked by 04.05.2015 / 16:07
4
answers

how to generate an xml in memory

With the code below, I generate a file and write it somewhere, however, instead of writing to disk, I wanted to generate it in memory, how do I do that? using (var context = new ClassContexto(ClassMaster.conexao())) {...
asked by 19.01.2017 / 17:47
2
answers

What is the simplest way to retrieve certain elements of an XML with Linq?

I have the following XML : <clientes> <cliente> <documentos/> <livros> <livro nome="Nome1"/> <livro nome="Nome2"/> </livros> </cliente&g...
asked by 31.01.2014 / 19:44
1
answer

XML file without associated style information

What is the meaning of this message?    This XML file does not appear to have any style information associated   with it. The document tree is shown below. I have this message in a dynamically generated XML file and I do not know what exa...
asked by 23.09.2014 / 19:12
2
answers

XML / C # - How to create tags containing other tags inside it

Allah Personal I have the following problem: I need to create a product xml file, in which each product will have a group, so that's fine, just by adding the data it creates the product tag and inside it creates the group , just when creating th...
asked by 03.01.2015 / 13:56
1
answer

How to modify XML elements with Java?

I've never worked with XML before. I created the following XML configs.xml : <resources> <string name="ip"></string> <string name="username"></string> <string name="password"></string&...
asked by 29.10.2014 / 20:13
2
answers

Simple XML Reader does not work correctly

I have used SimpleXMLReader to attempt to extract data from the following XML structure: <boutique> <produto num="228122907"> <id_produto><![CDATA[70427038]]></id_produto> <...
asked by 28.05.2017 / 21:34
2
answers

Read XML received from ajax - PHP

In php using the command var_dump($_FILES ['filexml']); I get the following ajax values array(5) { ["name"]=> string(56) "nomeficticio.xml" ["type"]=> string(8) "text/xml" ["tmp_name"]=> string(14) "/tmp/phpoqnomefi...
asked by 10.09.2015 / 15:07
3
answers

Read XML with XMLDocument in Delphi

I have this xml, I do not know how to read and get the values. Could someone help me? <?xml version="1.0" encoding="utf-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001...
asked by 16.10.2015 / 20:59
2
answers

Reading XML in C #

I know there's a lot of Post about how to read a XML file, but I do not find any that has XML with the same structure I have. I have the following code. private void LeituraXML() { //Criando objeto xml para abrir o arquiv...
asked by 29.08.2017 / 22:21