Questions tagged as 'xml'

1
answer

XML documentation

I develop a framework in PHP and would not like to comment on the code of the framework directly in the classes, for several reasons. So I would like to know if there is an editor that reads the documentation from an XML or something similar,...
asked by 13.08.2014 / 02:44
2
answers

What is the difference between SOAP 1.1 and SOAP 1.2?

When I use the SOAP UI ( link ) and refer to my asmx webServices, it always creates the operations interface for SOAP 1.1 and 1.2. And I do not realize what the practical difference is. For me the result is the same. What's different about SO...
asked by 28.07.2014 / 14:04
1
answer

What is the difference between "node", "attribute", "element" and "tag" in XML?

I'm confused about some features and terms of the XML markup language that are: node , attribute > element and tag tags , I would like to know what each one is and what are the differences between them? Follow this XML to help exp...
asked by 14.08.2016 / 00:49
2
answers

Error rendering - class could not be found: android.support.v7.internal.app.WindowDecorActionBar

In my project Android Studio is giving a rendering problem in xml, giving the following error:    Rendering Problems The following classes could not be found:       - android.support.v7.internal.app.WindowDecorActionBar (Fix Build Path, Creat...
asked by 25.11.2015 / 19:22
2
answers

How to limit characters?

I would like to know how to limit characters and then run something on Android. For example, in a EditText or a TextView I type 5 characters, typing the fifth character executes a command, for example, it deletes what was typed....
asked by 28.01.2015 / 18:16
5
answers

How to create and read an XML with Python?

How to create and read an XML with the DOM component in Python? How to read an XML with the cElementTree component of Python?     
asked by 31.01.2014 / 17:46
2
answers

Convert XML to array in PHP

I'm looking for article names through this link: [http://api.elsevier.com/content/search/index:SCIDIR?query=heart+attack&apiKey=20d0c7953f56925f725afe204869dadb&xml-decode=true&httpAccept=application%2Fxml][1] You are returning...
asked by 20.01.2015 / 16:55
2
answers

How to construct a complete XML in T-SQL?

I'm working on a procedure that returns a field in XML, so far nothing bad. The problem arises when I have initial data coming from a query and intermediate data coming from another query. I tried to solve with string concatenation and then c...
asked by 28.02.2014 / 16:40
4
answers

How to remove an element from an XML with Python?

The case is that I have a file produced by a Garmin (GPS device for physical exercise) and I want to remove all the fields related to the heart beat to pass the file to an athlete who did the exercise with me. The file is in GPX format and looks...
asked by 09.01.2014 / 19:44
2
answers

Manipulate XML with PHP [closed]

Can anyone tell me how I can get just the name value in the code below. index page. <?php $curl = curl_init('http://localhost/server.php'); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $resultado = curl_exec($curl); curl_close($cu...
asked by 05.03.2015 / 23:39