Questions tagged as 'xml'

1
answer

Python: How to execute a function on an X number of files (.XML)?

I need to run a Python function on a large number of .XML files. I need the parsing function to run on all the files that end in .XML. This is a fragment of the code to parse the .XML file: import os import xml.etree.ElementTree as ET d...
asked by 02.06.2017 / 15:12
0
answers

Import xml data in django with libxml2

I need to import to xml the comments I have in the mysql database. To do so I use libxml2 library. It seems that the error is in showing the generated xml. This would be the XML that generates     asdf views.py f = urll...
asked by 04.06.2017 / 17:00
2
answers

external server XML

I am generating an html file that brings data from an xml but if it is not inside my server it does not show it and I need to bring it from an external server since it will be managed from the outside. What is the error? the file is noticias.xml...
asked by 23.05.2017 / 22:31
2
answers

It is possible to show in the browser a empty xml element with css

I have this xml code for example: <br> <?xml version="1.0" encoding="iso-8859-1"?> <raiz> <activo/> </raiz> <br> and I would like to show the active word in the browser by applying css....
asked by 08.06.2017 / 13:01
1
answer

Consuming data from a webservice in xml with vb.net

I'm making a website on vb.net that consumes a webservice that uses Example , which returns me all countries. I only have one Send button that calls the countries and I have an LBL that shows me the result.    Imports service_country = W...
asked by 16.05.2017 / 00:34
1
answer

How do I save an XML file with Laravel?

I'm trying to save the xml file with laravel but I can not do it $xml = new \DomDocument('1.0', 'UTF-8'); $raiz = $xml->createElement('raiz'); $raiz = $xml->appendChild($raiz); $nodo = $xml->createEle...
asked by 17.05.2017 / 22:35
2
answers

Does not validate the XML in the DTD: element is not allowed for content model

It tells me that the bank's content is well formed but not validated:    Error at line 26, column 8: element 'account' is not allowed for content model 'account, customer, depositor) *' I know that the DTD is interpreted by me and could b...
asked by 22.04.2017 / 16:31
1
answer

eror maximum message size WCF

I work with a WCF service using basicHttpBinding and the error appears which I have not been able to solve, this is my Web.config <?xml version="1.0"?> <configuration> <system.web> <compilation debug="true"...
asked by 07.04.2017 / 19:02
0
answers

Change name to XML tag

How can I change the name of a tag of an XML already generated? I have an XML file of this style: <?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln...
asked by 05.04.2017 / 11:02
1
answer

XQuery: Error "Effective boolean value not defined for array (*): [true ()]."

I intend to make a query about an XML document whose structure is as follows: <bib> <libro anyo="1994"> <titulo>TCP/IP Ilustrado </titulo> <autor> <apellido>Stevens</apel...
asked by 28.03.2017 / 19:38