Hi All,
I am calling one xml file from another.
<?xml version="1.0" encoding="utf-8"?>
<pp xmlns:xi="http://www.w3.org/2001/XInclude">
<xx>aa</xx>
<yy>bb</yy>
<xi:include href="A.xml" parse="xml"/>
</person>
But I am not sure how to t...
Hi everyone,
I've written a stored procedure on SQL Server to return an xml that then is shown on a Web Service, and is caught by a LineChart in Flex to show its values.
The problem is I need to show different values for each period(I have three different periods: Current, 6 month, 1 year) and it's getting hard for me to generate the x...
Im having some trouble looping through some xml data.
The xml file is structured like this:
<users type="array">
−<user>
<id>14527576</id>
</user>
−<user>
<id>14527576</id>
</user>
−<user>
<id>14527576</id>
</user>
My php to loop through it looks like this
$xml = simplexml_load_string($rawxml);
foreach($xml->users ...
I have the following xml file
<Layout xmlns="http://tempuri.org/Layout/">
<Numeric Id="temperature" Caption="Temperature">
<validation:IsValidWhen xmlns:validation="http://tempuri.org/Validation/">
</validation:IsValidWhen>
</Numeric>
</Layout>
The http://tempuri.org/Layout/ XSD does not have a reference to http://t...
http://mailmarkup.org/hcl/hcl1%5F0-documentation.xsd
I am trying to apply some CSS to the above link. It looks perfect in Firefox and Opera, but it is absolutely horrible in IE. It seems the fonts are not being applied and no styles are being applied to namespace prefixed elements. Any ideas? Here is the CSS:
http://mailmarkup.org/...
Our project is working within fairly close quarters code-wise (a lot of changes happening in parallel in a fairly small geographical area of the code), and our feature branch based git workflow works out really nice for our java code.
But the xml/html stuff is not working really well. Simple unrelated changes (a designer adding a surro...
Hello,
Just before I begin heres a small overview of what I'm trying to achieve and then we'll get down to the gory details. At present I'm developing an application which will monitor a users registry for changes to specific keys which relate to user preferences. Were currently using mandatory profiles (not my choice), anyway the whole...
Our C++ application reads configuration data from XML files that look something like this:
<data>
<value id="FOO1" name="foo1" size="10" description="the foo" ... />
<value id="FOO2" name="foo2" size="10" description="the other foo" ... />
...
<value id="FOO300" name="foo300" size="10" description="the last foo" ... />
</data>
Th...
It has been suggested that I use CSS for displaying XML. I know in my heart that this is wrong, but cannot find the words to adequately convince others. Can anyone provide me with a list of pros/cons of using CSS and XSLT for displaying XML.
Thanks!
...
I have an XML document generated from an external application, but that application does not have access to some file information, namely a file checksum. The element is included in the ouptut, but the value is empty. I need to modify the XML via an XSL to include the checksum, but am having difficulty creating an XSL to do this.
In t...
I have an XML document with a section similar to the following:
<release_list>
<release>
<id>100</id>
<file_list>
<file>
<id>20</id>
</file>
<file>
<id>21</id>
</file>
</file_list>
</release>
<release>
<id>101</id>
<file_list>
<file>
<id>22</id>
</file...
Hey guys, is there any way to tell the Transformer (when serializing an xml document using DOM), to omit the standalone attribute?
Preferably without using a hack , i.e. ommitting the whole xml declaration and then prepending it manually.
Thanks
-Vic
My current code:
Transformer transformer = TransformerFactory.newInstance().newTran...
We are designing a web-site allowing business to upload data via XML. We have the XSD for the XML upload. What's the industry standard in supplying the XSD for the users? Is it provided on the web-site as a download?
Thanks--
...
How can I merge all sibling elements with the same name and the same attributes into a single element using XSLT? The transformation should also be applied recursively to children of elements that are being merged. This is the source document:
<?xml version="1.0"?>
<Root>
<Element id="UniqueId1">
<SubElement1/>
<SubElement2>...
Dear fellow users,
recently I wanted to return through a Django view a dynamically generated XML tree. The module I use for XML manipulation is the usual cElementTree.
I think I tackled what I wanted by doing the following:
def view1(request):
resp = HttpResponse(g())
return resp
def g():
root = Element("ist")
list...
I'm looking to generate an XML representation of the AST for a given java class (by parsing its source). Overall, what I want to do is write XSLT queries to find meta patterns in the source code - very much like PMD does.
There was an open source utility that started this, but went stale. Anyone know of a utility to do this?
-Mike
...
I am new to Umbraco CMS. PLease help.
I have a Umbraco website in which I created a DocumentType called 'Master'. The 'Master' page lets user input a goal and amount for a fund raising initiate they are undertaking. On the 'Master' page I have a Macro which automatically does the math to generate a percent that will be used throughout...
Trying to "thaw" serialized objects that have been stored in an XML file:
In LinqToSQL, I can (with a suitably decorated class) do this type of thing:
[Table(Name="Plants")]
public class Plant
{
[Column(Name = "Id", IsPrimaryKey = true)]
public int Id { get; set; }
[Column(Name = "Genus")]
public string...
I have been working with WebServices for sometime. I dealt with many services where XSDs were linked with WSDL for validation and such...
But whenever I get any such requirement, I always used WSDL tool to generate proxy using .wsdl and .xsd files. The type defined in XSD were automatically generated in the proxy.
I know what this tool...
I need to convert powerpoint file to a text based file such as xml o html programatically and do some proccesses in it and again convert the textbased file top powerpoint. I prefer to do it with java.
...