0
votes
0answers
8 views
What is the best way to represent an XML file in a Design document?
What is the best way to represent an XML file in a design document?
For table we typically show it as
Name Type
CustomerID {GUID}
For XML do we just paste the XML in the document?
0
votes
0answers
4 views
Trouble with multiple songs in Flex - AS3
Hello all,
I am trying to create a mini media player AIR app that allows users to view videos, images, and songs loaded in through an external XML file, while also allowing the user to browse through …
0
votes
1answer
52 views
XML: Is this valid?
Is the following XML declaration valid?
<message metadata="SomeMetaData" xsi:nil="true"/>
If I am trying to create the above data for transfer through a ASP.NET Web Service Application in C#, …
0
votes
2answers
18 views
How to get the XSD file root element with C# System.xml.schema
Hello
Good day.
As i know. There is a root element in XML file.
But from the XSD file structure, it is not easy to get the root element value.
Is there any method to do it?
(I wouldn't like to …
0
votes
6answers
148 views
How to add web-services as a layer on the top of sockets written in C/C++?
Is it possible to exchange web-services over socket programs written in C/C++?
The data to exchange are in the from of xml/soap message.
0
votes
4answers
90 views
how to exchange data in form of XML through sockets in C/C++
Hi,
Could someone please help and provide me links where I can find materials/examples describing how to exchange data in the form of XML schemas between socket programs written in C/C++?
Actually I …
0
votes
1answer
17 views
having trouble generating xml attribute with java sax
Hi,
I am using SAX api in java to convert csv to xml. I can generate simple xml file without attribute like
<item>
<item_id>1500</item_id>
…
0
votes
2answers
33 views
Using XML::Simple for configuring HTML::FormFu
I assume you can use XML::Simple with HTML::FormFu because FromFu uses Config::Any to load it's config data.
However, I can't seem to find any sample xml configs being used with HTML::FormFu. Not …
1
vote
2answers
29 views
Java: Saving StreamResult to a file.
Hi,
I am doing some data conversion(like csv) to xml with SAX then using transformer in Java. The result is in StreamResult, and I am trying to save this result to a file.xml but I can't find way to …
0
votes
1answer
20 views
How to extract the first hit elements from an XML NCBI BLAST file?
Hello all,
Im trying to extract only the first hit from an NCBI xml BLAST file. next I would like to get only the first HSP. at the final stage I would like to get these based on best score.
to make …
0
votes
2answers
123 views
Why does XML::Simple flatten this Tomboy note?
I'm trying to parse a Tomboy note that has a link to another note inside it. The XML comes out looking like this:
<?xml version="1.0" encoding="utf-8"?>
<note version="0.3" …
0
votes
4answers
34 views
What’s an elegant and easy way to construct XML from a custom object?
I need to construct an XML transaction of the following format:
<RateV3Request USERID="MyId">
<Package ID="1ST">
<Service>ALL</Service>
…
0
votes
1answer
112 views
XML databinding to TreeView (or Tab control), bind attribute based on different attribute
Hello,
I have some xml:
<Test>
<thing location="home" status="good"/>
<thing location=work" status="bad"/>
<thing location="mountains" status="good"/>
</Test>
…
0
votes
1answer
35 views
Compare XML in PHP without hashing
I am reading an XML feed and would like to compare to an old version to check for updates.
My problems at the moment are that I can't seem to make a copy of a SimpleXML object and the other problem is …
1
vote
1answer
17 views
Custom sort xml bound DataGridView
I have a DataGridView bound to xml file. I would like to sort by first column and treat values as integers (not strings).
XmlDataDocument xml = new XmlDataDocument();
xml.DataSet.ReadXml("file.xml");
…
