Hi all,
Stuck a bit with the following and would love some ideas/pointers in the right direction. I have the following XML:
<RecordsCollection>
<CustomerRecord>
<customerId>12345</customerId>
<currency>USD</currency>
</CustomerRecord>
<CustomerRecord>
<customerId>12345</customerId>
<currency>USD</currency>
</Cus...
how can i choose a specific testsuite to be executed?
$ phpunit --configuration config.xml
config.xml:
<testsuites>
<testsuite name="Library">
<directory>library</directory>
</testsuite>
<testsuite name="XXX_Form">
<file>library/XXX/FormTest.php</file>
<directory>library/XXX/Form</directory>
...
Hi,
Is it possible to format text in xml file that gets displayed in flash. Below is my xml file with 3 menu labels. Is it possible to just highlight and italicize the word 'New' when it displays in a flash file. I tried doing something like New, but it wont work..
<?xml version="1.0" encoding="utf-8"?>
<items>
<item item_label="Home"...
I have several elements defined in my XSD file that I use as references later on in the document. I do want any of these "reference" elements to constitute a valid xml file.
For example I have
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:element name=...
My question is similar to this one: http://stackoverflow.com/questions/3061804/choose-a-xml-node-in-sql-server-based-on-max-value-of-a-child-element
except that my column is NOT of type XML, it's of type nvarchar(max).
I want to extract the XML node values from a column that looks like this:
<Data>
<el1>1234</el1>
<el2>Something</el2>
...
Alright, so I'm using XML schema to validate a following type of xml file: (just pretend the parens are actually angled brackets).
<root>
<A>
<B></B>
<C></C>
</A>
</root>
pretty simple -> except the catch is that I also want to have a comment element, which can occur an unbounded number of times in any order (provid...
I have an xml file xyz.xml:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<legends>
<legend>
<number>1</number>
<contentString>abcd</contentString>
</legend>
<legend>
<number>2</number>
<contentString>efg</contentString>
</legend>
<legend>
<number>3</number>
<contentString>hij</contentString>
</legend>
</legends>
I am trying...
I am writing a proxy service for caching the queries that my mobile app makes to webservice. (like a man in the middle)
The task of proxy site I have built is pass the query it gets from the app onto third party webservice and save the response from the third party webservice as an XML file and for all subsequent calls for the same que...
Does anyone readily know if using eval() and responseText (using JSON) is faster or slower than just using responseXML?
I would imagine avoiding the eval() and using responseXML instead would be faster, despite the fact that you gotta write really long code to actually get the values of the XML.
Thanks.
...
In HTML, it's very convenient to be able to say:
div.innerHTML = "";
In order to clear a <div> element.
Is there any equivalent if I have an <svg> element instead? There seems to be neither innerHTML nor innerXML or even innerSVG.
I know the SVG DOM is a superset of the XML DOM, so I know I can do something like this:
while (svg.la...
I have an xml file like:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<legends>
<legend>
<number>1</number>
<legendString><ul><li>1.across:a system of rules of conduct or method of practice</li><li>1.down:a disagreement or argument about something important</li><li>2.down:any broad thin surface</li><li>3.across:the passage of...
Reliable, free, XML plug-in for Eclipse.
The good ones seem to be for pay and most of the free ones seem to be either very old or in beta (or alpha or pre-alpha!)
What is your favorite?
I don't need anything advanced, just a robust, honest piece of sw that does basic xml manipulation tasks.
ps: I like the ones that can can be installed...
Anyone have idea how can i write XMl file that i will have JDBC connection (username, passwd, driver, connection) in it and then read that xml for connecting to db?
...
Hi there,
I currently have to iterate through a larger amount of .xml files and I am bound to Mono (so no brand new .NET LINQ etc.).
I use XmlDocument to load each XML file, now my question is, can I use one instance of XmlDocument for all files?
Code Example below:
filePath = "Assets/Units/";
// Get all files
string [...
I have the following XML File:
<Company >
<shareprice>
<timeStamp> 12:00:00.01</timeStamp>
<Price> 25.02</Price>
</shareprice>
<shareprice>
<timeStamp> 12:00:00.02</timeStamp>
<Price> 15</Price>
</shareprice>
<shareprice>
<timeStamp> 12:00:01.025</timeStamp>
<Price...
Hi all I'm in need to make a WYSIWYG XML editor for a custom XML grammar.
By this time I have explored all the OpenSource tools that I could find under this domain.
Includes VEX, Oxygen, Bitflux...
Since none of them were serving my purpose.
I'm also looking for javascript based WYSIWYG HTML editors which can support and additional DOC...
Is there are minimal XML specification which can be used to import blog using Import blog feature?
...
Let us have a xml tree of depth N. I have traveresd the last node means i am at last note. Now i wanted to go back to some level up (say at N-3) in the xml tree from that last node.
Please let me know the syntax for the XPATH query so that i can reached at intended node in the xml tree.
...
hi,
i have one xml document. i used to read the xml from webservices using c# and display the xml document content in the popup window. i wish to apply style for the xml element in the xml document.
xml document:
<?xml version="1.0" encoding="utf-8" ?>
<BubbleHelp>
<Module name="ADMIN">
<HelpItem ID="BRANCHID">
<B>Hello</B>World!!
-...
I have a XML file which has a node which is commented out. I have created this node using the syntax -
relTableCommentedNode = xDoc.CreateNode(XmlNodeType.Comment, "RELTABLECOMMENTED", "np");
What is the best approach to uncomment this node ? Can I identify this node based on the name which I used to create the node (RELTABLECOMMENTED...