Hi I am writing an app for a medical study
they will type in
the gender, the age, and some other values which will be calculated to a ResultValue
now I have an XML file which holds some information about the result in combination
of Age, Gender and the ResultValues and I would like to print out the description of the TestResult (in c...
I'm working with XML that was designed by somebody who got paid by the level of nesting. The different xml files always looks something like this:
<Car>
<Color>
<Paint>
<AnotherUselessTag>
<SomeSemanticBs>
<TheImportantData>
With LINQ its easy to get what I want: ( not exactly...
Howdy,
Is there a pattern where in WPF, I can build a simple UI form from an XML like definition file pulled from a database?
It would allow the user to enter data into this form, and submit it back. The data would be sent back in an XML structure that would closely/exactly mimic the UI definition.
The definition should includ...
I'm looking for the best approach to getting an XML document from a JDBC resultset. The structure of the XML isn't awfully important, but it should be fairly speedy.
For clearification, I would like the data from the resultset and only enough metadata to identify the data (field names essentially). I'm working with MySQL, DB2, SQL Serve...
Hello there,
I am currently putting together a rails-based web application which will only serve and receive data via json and xml. However, some requirements contain the ability to upload binary data (images).
Now to my understanding JSON is not entirely meant for that... but how do you in general tackle the problem of receiving bina...
Currently our Java application uses the values held within a tab delimited *.cfg file. We need to change this application so that it now uses an XML file.
What is the best/simplest library to use in order to read in values from this file?
...
Is there an IDE out there that can generate XML from XSD?
Not Oxygen or XmlSpy, they are too expensive for me...
command line based is ofcourse the preferred method!
...
I have an xml string
sVal.responseText gives me
< NewDataSet >
< Table >
<FieldID>21</FieldID>
<TableName>F003v001</TableName>
<FieldName>Grade</FieldName>
<DisplayField>Grade</DisplayField>
<FieldType>text</FieldType>
< /Table >
</NewDataSet>
i am calling FillTable(sVal.responseXML.documentElemen...
Hello,
I think i have a rather unique problem to solve. Well, i cant find enough information using Google. So here it goes,
I work on a JEE SOA application which stores XML documents as XML using Oracle XML DB. Whenever the XML changes, i increment the version and throw the previous version into a different table.
The requiremen...
I'm trying to save data in a TClientDataSet to an XML file, but it doesn't like some of my fields. The helpfile says to create a definition, in one of two ways: either with the xmlmapper.exe file in my \bin folder or with an IDOMDocument interface.
Problem is, xmlmapper.exe isn't there, and IDOMDocument is one of those annoying structu...
I have been studying SOAP and WSDL in preparation for implementing a web service. One thing that I have encountered that puzzles me is that some of the URIs that I have seen use a trailing slash such as:
http://www.w3.org/some-namespace/
while other examples that I have studied omit this trailing slash. I really have several questio...
Basically the app writes the contents of a Collection to XML. I'm using XMLStreamWriter (XMLOutputFactory.newInstance().createXMLStreamWriter(...)) for this purpose.
Works great except for the fact that I can't get how to append data to an existing file. Don't really like the idea of reading all of it first, appending the data in memory...
I am working on a small widget for BlogEngine.Net. My widget is going to take a person's shared items atom feed and print the title, website url, date, and atom url. To complete this task, I have begun to use Linq and XML.
Here is the problem. The atom feed Google Reader uses is located in the source element, which has an attribute ...
I have an object that is mapped to have a set of objects, very simple. However, what I really want to do is put some criteria on that mapping. Here's the current mapping:
<set name="ops" inverse="true" cascade="all, delete-orphan">
<key column="cityblock_id" on-delete="cascade"/>
<one-to-many class="com.tamedtornado....
What XML libraries are out there, which are minimal, easy to use, come with little dependencies (ideally none), can be linked statically and come with a liberal license? So far, I've been a pretty happy user of TinyXML, but I'm curious what alternatives I have missed so far.
...
Dupe: http://stackoverflow.com/questions/433528/xml-relationship
I am unable to define a relationship between paper and author. Is it possible to define one?
<xsd:complextype name="Researcher'>
</xsd:complextype>
<xsd:complexType name = "Paper" >
<xsd:extension base = " Researcher " >
</xsd:extension>
</xsd:complexType...
I have an automatically generated XML file for the game that I run. It however apparently has an error.
The file is at: http://woarl.com/myXML.xml
And the error is apparently at line 520, here are lines 519-521
<type>Academy</type>
<typeid>23</typeid>
<completion>4</completion>
Any ideas as to what the error is?
...
I am unable to define a relationship between paper and author. Is it possible to define one?
<xsd:complextype name="Researcher'>
</xsd:complextype>
<xsd:complexType name = "Paper" >
<xsd:extension base = " Researcher " >
</xsd:extension>
</xsd:complexType>
<xsd:complexType name = "Author">
<xsd:extension base = " Res...
I want to have a managerial report after executing tests from NUnit. By looking into NUnit, It seems as it generates the output in XML format. Plz any one can give suggesttion of how to accomplish this.
...
I'm not sure if namespaces are required for valid/correct XML. Can I add arbitrary tags to an XML document without having to define/declare a namespace for them?
I think namespaces are a good idea and are probably best practice but I just want to know if they are mandatory or not.
...