Extensible Markup Language (XML) is a structured document format that defines human- and machine-readable encoding rules.

learn more… | top users | synonyms

0
votes
0answers
25 views

Changing type of webparam

So my question is basically the following: I've got a xsd that I need to use as reference to create a server with a webservice. The xsd that I've got as reference is more or less the following: ...
1
vote
0answers
35 views

Phonegap - HTML5 - Music Player with XML playlist

Okay, so i've been working on a jquery mobile music player that with phonegap I would like to turn into an app. The problem is the audio doesn't work locally, It works if streamed but it doesn't work ...
1
vote
1answer
30 views

XSLT with Python's lxml: Forbidden Variable?

I'm trying to transform XML to XHTML using XSLT. I'd like to do it using Python, but I'm not particularly attached to any library. Following the directions here, I've been trying this: from lxml ...
0
votes
0answers
65 views

Can't activate Preview mode Android Studio

I am trying to switch over to the new Android Studio (awesome btw) but I can' activate the "Preview" window to view my XML files like they demo'd in I/O. When I navigate to View-->Tool ...
1
vote
2answers
62 views

trouble calling a method in form 2 from a button click on form 1, vb.net

I have a program for creating a time sheet and when a saved time sheet is loaded by clicking a button on form 1 the data loads to form 2 and then calls a method in form 2 to print the data to form 3. ...
0
votes
2answers
16 views

create one xml node from two functions php

Im using the google map api with a database connection, I have a function that output an xml file and the JavaScript reads the coordinates . no problem there. Now i want to add another function that ...
0
votes
1answer
12 views

How to create a web service with binary encrypted XML requests?

I'm trying to create a web service that can get an encrypted XML request and work with it, instead of the regular XML SOAP messages, can this be done? If so, how? What sort of protocol do I need?
2
votes
1answer
27 views

Extract parts of string with XPath

I have the following tag in xml: <GameESRB> Mature10+ </GameESRB> I want to get all the characters that are not lowercase using XPath 1.0 and XSLT 1.0. Thus the result string for the ...
0
votes
1answer
47 views

Getting attributes values from a node in XML file

I have an XML file and i want to get values of the nodes attributes in it, it works efficiently when the node is usual but is the case of nodes named like something:something it didn't give me back ...
-1
votes
1answer
33 views

xml parsing foreach loop + only one record inserted? [closed]

I cant for the life of me figure out how to get this code to process more than one record. The code works fine, it just inserts the first record and then stops. The feed: ...
4
votes
3answers
44 views

XML count elements, If id exists increment by one

What i am trying to do is count the elements under the root element. Then check if one id on that same level has the id value. When this occurs it needs to increment by one. The code public function ...
0
votes
1answer
45 views

Something wrong in printing XML node attribute value

I have a problem in printing the value of an attribute existing in a node in a given XML file.I use that code and it compiled correctly but didn't print anything: XPathFactory factory = ...
0
votes
1answer
18 views

AS3: URLLoader: XML: missing data (data == “<”)

I'm creating a website. All data are loaded from an xml over the web. When accessing it from my swf app, everything is fine. The owner of the site aint very good with computer so i'm creating a tool ...
0
votes
2answers
26 views

How to iterate to the next sibling xml element?

Consider you have the following xml structure: <root> <File> a.txt <Version> 1.5 </Version> </File> <File> b.txt <Version> 1.0 ...
0
votes
0answers
26 views

how to improve image loading in jQuery Ajax?

I have XML file that i am converting to HTML using jQuery. each record in XML have multiple URL for different images and I have to display 1st image of each record along with it specific data in HTML ...
1
vote
1answer
32 views

How to get the full path of a node in XML file in java?

I have XML file parsed by XPath to get all the parameters in it, and then i want to get the full path to each parameter but my code didn't work for some reason. The Code: ArrayList<String> ...
-1
votes
2answers
31 views

XSLT copy-of but change values

I have a XML file which has non standard html elements like so: Note: Paragraphs have been shortend. <content> Sacrifice. It's Mass Effect 3's major ...
0
votes
1answer
15 views

sp_xml_preparedocument does not recognize validated xml variable

Can anyone help I am trying to Shred an XML document into a data table in SQL Server. I am using a XML SCHEMA COLLECTION to validate the xml document. Below is a copy of my XML Schema ...
0
votes
0answers
34 views

Generated C# classes with XML schema versioning

I'm working on an C#/.NET application where we're handling XML documents corresponding to an external XSD schema. We've used XSD.exe to generate C# proxy classes from the XSD for easy serialization ...
0
votes
4answers
42 views

EditText always showing null

My xml <TextView android:id="@+id/newPlaceLatLable" android:text="Place Latitude" android:layout_width="150dp" android:layout_height="40dp" ...
-1
votes
0answers
22 views

How to write web.xml for url rewriting of jsp page?

I have some file like index.jsp, user.jsp, about.jsp, contact.jsp in a folder named "project" inside webapps. I want some url rewriting like... If i write in url ...
0
votes
0answers
29 views

Hard Loop Code Dynamic

I have the following input and I am trying to get an output for it as follows can you please help: <Index> <Line> <Err> <cd> 20 </cd> ...
0
votes
3answers
36 views

Two xml declaration in single xml file error

My requirement is to create xml file and add xml elements to the existing xml file. First I tried creating new xml file by following code. using (XmlWriter xmlWriter = XmlWriter.Create(fStream, ...
3
votes
1answer
56 views

how to read xml attribute using C# classes using deserialization

Below is My XML File : <Visibilities> <Visibilities AppName="Test2"> <Visibility DisplayName="Full Name"> <FullName> <FirstName ...
-1
votes
0answers
19 views

Access Custom tag from App.config

My app.config is, <sectionGroup name="CategorySettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" > ...
-1
votes
3answers
36 views

“LinearLayout” must be followed by either attribute specifications, “>” or “/>” in android

Hi i have a error on my activity i dont know why error shows in line 6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" ...
0
votes
0answers
12 views

mule3.4 choice node expression

An example of a mule 1.I have two nodes requesting endpoint is an HTTP POST request message is as follows <?xml version="1.0" encoding="UTF-8"?> <message> <head> ...
-1
votes
1answer
16 views

Is there an XML editor that let's me parse by conditional statements? [closed]

I exported a SQL table to an XML document. The nodes are blog posts with title, content, post date, author fields. Some nodes (a few hundred) have empty 'content fields' and i'd like to remove these ...
0
votes
1answer
10 views

flash mp3 player XML error

I am relatively new to this, I'm in the process of creating a web site http://www.ernestodabo.com and included aflash mp3 player in it. Problem is after adding to the player and putting the page live ...
0
votes
2answers
29 views

Error parsing XML: not well-formed (invalid token) andElement type “LinearLayout” must be followed by either attribute specifications, “>” or “/>” [closed]

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" ...
0
votes
2answers
28 views

Get XML with single Data

This site http://geoiptool.com/data.php report data in XML <markers> <marker lat="xxx" lng="xxx" city="xxx" country="xxx" host="xxx" ip="xx" code="xx"/> </markers> ...
0
votes
3answers
50 views

Java XML Reading an XML file from top to bottom

I want to read an XML starting from the top to the bottom using Java. However, I don't want to use recursive functions because I want to be able to jump to a different element and start reading from ...
0
votes
1answer
18 views

XMLSyntaxError in lxml python

I'm using pyKML to parse a KML. Here's my code: # -*- encoding: UTF-8 -*- import codecs from pykml import parser kml_str=""" <?xml version="1.0" encoding="UTF-8"?> <kml ...
1
vote
1answer
26 views

How do I convert this piece of XML into a javascript collection?

I'd like to convert XML that looks like this: <products> <product> <Name>Bill</Name> <ID>1</ID> <Age>19</Age> </product> ...
-2
votes
4answers
42 views

XPATH method for retuning multiple dynamic results from a XML file using PHP [closed]

I have a form that the user types or selects a value the form is as follows <form id="search_photos" action="photo_result.php" method="get"> <input value="" name="photographer_id" ...
0
votes
0answers
26 views

OpenCV HaarCascade msc rightear

I'm trying to detect an ear, but unfortunately I'm not getting. I think it's a configuration error on cvSetImageROI or cvHaarDetectObjects. Could someone help me? Regards Code: cvSetImageROI( ...
-2
votes
1answer
40 views

How to free memory at end of PHP script to make my database insertion script faster for the next request? [closed]

I have a PHP script that reads the contents of an XML file and then creates an object using $xml = new SimpleXMLElement($file_name, 0, TRUE); It then converts the object to a workable array and ...
0
votes
1answer
23 views

TFHpple - getting element HTML without element's tags?

I'm parsing some HTML and I need to get all the innerHTML of <body />. I'm doing it this way: TFHpple *doc = [[TFHpple alloc] initWithHTMLData:[NSData dataWithContentsOfFile:sectionFilePath]]; ...
0
votes
1answer
43 views

Prestashop 1.5.4.x: how to get proper category_link, image, price?

Prestashop 1.5.4.x How to get proper category_link, image, price in the code below? It properly print name, link, manufacturer, category_full. Script show incorrect format for price: 191.26073 instead ...
0
votes
0answers
9 views

Phonegap config.xml preference differences

Developing an application for iOS I'm seeing inconsistencies within the documentation for PhoneGap in regards to the config.xml file. According to this page: ...
0
votes
0answers
33 views

Parsing html with qt?

How can I extract from a html page some content in the easiest way, such as for example all the strong tags whose parents are p and are of class A ? The xpath equivalent would be ...
0
votes
2answers
28 views

ArgumentNullException while selecting inner node value in xml

I'm trying to get the location name value from the xml document given below, but it shows argumentnullexception . Any help will be appreciated <Response ...
0
votes
0answers
5 views

SSIS XML edit column

My data source has an XML column called : DataXml Also i have 2 other xml columns from other sources : XMLOne, XMLTwo I want place XMLOne & XMLTwo under one of the XML nodes of DataXML Ex: ...
0
votes
1answer
26 views

Exception while loading xml document

I'm developing a windows phone application. While accessing bing maps, exception is occurred while loading an xml document "XmlException - Name cannot begin with '.' character" at the line XDocument ...
1
vote
0answers
36 views

how to make custom key in soft keyboard in android

I am trying to develope custome soft keyboard in android, I am want change color of outptut text of key when I press on th key, my idea is by make class extends key by this code: public class k ...
2
votes
3answers
38 views

Loop selection with increment using XSLT

I am facing the following issue: If I have the following XML data: <Input> <Error> <Info> <Code> 111 </Code> <Value>Hello User </Value> ...
0
votes
1answer
17 views

update XML file in a page Jsp

I use spring security and i have many roles in my database for example ROLE_ADMIN and ROLE_USER so in my xml file named "spring-security.xml" i defin for each page wich role can see it : <http ...
0
votes
0answers
12 views

Could not find class sf.json.xml.xmlserializer

I have the following code in my program. url = new URL("http://www.aemet.es/xml/municipios/localidad_41091.xml"); URLConnection in = url.openConnection(); BufferedReader read = new ...
0
votes
0answers
14 views

Avoiding timeout when creating xml-file

For my article export I use this code $xml = new DOMDocument('1.0', 'UTF-8'); $xml->formatOutput = true; $root = $xml->createElement('products'); $xml->appendChild($root); while ($products = ...
1
vote
2answers
35 views

OpenERP 7: Adding a button on a product view

I am currently playing with openERP 7. I am doing some testing and I am building my first add-on. I want to add on every product view a "synchronize" button on a tab named "special" that has been ...

1 3 4 5 6 7 1275