Tagged Questions
The xml-generation tag has no wiki summary.
1
vote
2answers
69 views
We have C structures in header files and we want to have an XML schema generated from the header files
I have a twenty year old legacy application and want to connect it to a web front end. I need to pass a rather large deeply nested data structure that is defined in C structs. We are currently ...
1
vote
2answers
2k views
Cakephp generating xml error - blank space
I am trying to generate a dynamic xml document in CakePHP to output to the browser.
Here is my controller code:
Configure::write ('debug', 0);
$this->layout = null;
header('Content-type: ...
1
vote
3answers
896 views
Creating a XmlDocument with hardcoded schema C#
I have an application that works with XML file. It works great if the xml file is present, however there is also a requirement, that the project generates a blank XML file and then writes to it in ...
0
votes
1answer
16 views
Can I display the output of a file with extension *.php as XML in Chrome?
I have a PHP script that outputs valid XML to the browser. Is there a way that I can get Chrome to display this as XML?
0
votes
2answers
224 views
Create XML document on GWT client side
I'm trying to create some XML files on the client and then send them to the server (nothing special, just something like <root><blabla>...</blabla>...</root>).
Doing this by ...