Extensible Markup Language (XML) is a structured document format that defines human- and machine-readable encoding rules.
0
votes
0answers
2 views
xml element is being returned as object HTMLCollection
I have an xml document that returns a list of map markers.
<markers>
<marker name="Marker 1 name" theid="100">
<content>Text goes here</content>
</marker>
<marker ...
0
votes
0answers
5 views
Exporting treeview to xml format
Would using a Depth Test Search on a populated tree view the best way to get information and export it to an XML file?
Depth Test Search
0
votes
1answer
17 views
Reading multiple XML files from an input stream Java
How would I read multiple XML files from an input stream in Java and write them as XML files?
I have this:
InputStream is = new GZIPInputStream(new FileInputStream(file));
Edit: I have a tar.gz ...
0
votes
0answers
5 views
Saving Objects as XML with XML-declaration and XSLT-path via powershell
i have an array with a lot of objects. if i use:
$array | Export-CliXML "C:\bla.xml"
it creates me an XML document but without the XML declaration. Export-CliXML is not saving information about the ...
0
votes
0answers
24 views
Custom Progressbar Drawable
I want to create a custom ProgressBar. I've created a style like this:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
...
1
vote
1answer
27 views
Extract attributes and certain tag values from xml using python script
I want to parse an XML content and return a dictionary which contains only the name attribute and its values as dictionary. For example:
<ecmaarray>
<number ...
0
votes
1answer
21 views
Android layouts - programmatically setting value for a custom layout components
I have defined a simple custom layout that includes a text view and an image view. in my main layout I want to use this layout several times and I want to add value to these text and image views in my ...
0
votes
0answers
9 views
XML to PHP with recursive image field names
I have an XML feed that I need to extract the names of the images to different fields.
I can capture the relevant fields, and I can capture the first 'fullpath' filename, but I want to capture both ...
0
votes
0answers
18 views
How to create a clickable Listview and go to new page where the user can add items within the list
I would like some guidance on how to create a clickable Listview and go to new page where the user can add items within the list as I am creating a To Do List, and I want the user to be able to create ...
0
votes
1answer
26 views
showing Premature end of file
when i run the jsp page
it shows
** D:\projects\saxco\build.xml:1: Premature end of file.**
i am not using any Framework.its my content in content.xml
<?xml version="1.0" ...
0
votes
1answer
12 views
Error reading WiX .wxs file
I am trying to read a WiX .wxs file as follows:
XDocument xmlFile = XDocument.Load(outputWxsFile);
I get the following exception :
'<', hexadecimal value 0x3C, is an invalid attribute ...
0
votes
0answers
14 views
possible XSLT optimization
Right now I have XSLT that transforms XML the way I want. But it is working very slow. The main problem is here:
<xsl:key name="document" match="/coverage/module/method/seqpnt/@document" use="." ...
2
votes
1answer
15 views
Selecting values out of XML with SQL Server 2008 with namespaces
My XML looks like
<p:initiateTest xmlns:S52="https://collaborate.com/svn/edm/tdp/CharacteristicEnumerations"
...
0
votes
0answers
5 views
jQuery Ajax: failed to load resource
I am trying to call a web API by using jquery ajax POST. Preferably using XML.
function makeAjaxCall(phoneNumber) {
$.ajax({
type: "POST",
url: ...
0
votes
1answer
14 views
The xslt sorting doesnt work in xslt
I have written a block of XSLT and I want to sort my xml file, but that doesnt work. could you please inform me how can I solve this problem and why this code doesnt work for me. Thenk you so much for ...