xml

How do I delete an element from an XML file after it is parsed?

Suppose the XML file is: <class name=math> <student>luke1</student> ... <student>luke8000000</student> </class> <class name=english> <student>mary1</student> ... <student>mary1000000</student> </class> after class=math is parsed, I want to delete this element from the XML file so that when class=english is parsed, Twig will not go thr...

Tree navigation with XML and XSLT

I have this tree structured XML (toc.xml): <?xml version="1.0" encoding="utf-8"?> <toc> <item name="top" key="4294967296" subkey="1"> <item name="child1" key="4294967611" subkey=""> <item name="child2-1" key="4294961611" subkey=""> <item name="child3-1" key="4294967613" subkey=""/> <item name="child3-2" key="...

How to avoid XmlSerializer failure if process environment is too large?

Hi, I ran into a strange problem last week. A call to new XMLSerializer(typeof(MyType)) crashed with an ExternalException, telling me that csc.exe could not be executed. After some investigation I found that this exception only occurs if the process environment size reaches a "critical" limit. I created a little sample application to ve...

Retrieve n Records From XML FIle With PHP

I'm trying to retrieve N number of items from an XML file using simpleXML and put the information into a 2 dimensional array like: [0][name] [0][image] [1][name] [1][image] [2][name] [2][image] In this case N items will be 6. I'd like to do this two ways, 1. Grab the first 0-6 keys and values 2. Or a random 6 from the xml file. Th...

how to make an attribute unique in xml schema?

i wanna make an attribute of an element to be unique like primary key. how to make it? ...

XML parsing of large amount of data

Which is the optimal way of XML parsing(XML may be of large amount of data) in php? ...

Importing XML files into an Access DB with multiple tables

Hello, I have a bunch of (flat) XML files such as: <?xml version="1.0" encoding="UTF-8"?> <SomeName> <UID> ID123 </UID> <Node1> DataA </Node1> <Node2> DataB </Node2> <Node3> DataC </Node3> <AnotherNode1> DataD </AnotherNode1> <AnotherNode2> DataE </AnotherNode2> <Anothe...

Best way to parse a large, nested XML sheet with PHP?

Hi there, I'm trying to parse a quite large XML-sheet with PHP, but I'm fairly new to it. The XML-sheet contains a couple of thousands of records. Here is an example of the structure used within the sheet: <familyList> <family> <familyID>1234</familyID> <familyDescription>The Jonathans</familyDescription> <childrenList> <child>Suzan</c...

XSLT control structures!

how to find greatest 2 numbers out of 3 numbers. like in following example. <root> <num>10</num> <num>12</num> <num>8</num> </root> for the above code xslt should display "10 12" help me to do it. Thanks in advance!!! ...

Help solving NSXMLParser error 39 : NSXMLParserAttributeNotStartedError

I've been searching for about two hours now trying to find out what this error is and how to solve it. Apple's documents gladly says NSXMLParserAttributeNotStartedError Attribute is not started. Available in Mac OS X v10.3 and later. Declared in NSXMLParser.h. but fails to provide any help whatsoever. Can anyone help me out h...

Xcode plist files consistently forget type designations

I have numerous Plist files that contains dictionaries in a project and I find that they reliably forget the data type of various entries and default to NSString. For example, I might have a PLIST containing a dictionary with several keys set to a type of NSNumber, and after closing and reopening Xcode they all get defaulted to NSString...

Table footer not visible when I am using XSL FO to create a PDF

Pretty newbie with all this XSL: FO mallarky and I am having a hard time creating quite a complex table in a document. I have a 4 column part to the table, and I have a statement that I would like to sit in the footer of the table spaning 4 columns, but after creating a fo table-footer section, I cannot get my footer to display. I don't ...

How to design for Android apps ever-changing screen dimensions

I'm a web designer by nature, accustomed to changing resolutions and font sizes, but I'm unsure how to design for the Android platform without knowledge of screen sizes, especially when the screen rotates from portrait mode to landscape. Should I just do generic things that tile, or is there a way to design things of static size? By t...

arithmetic operation in XSLT

how to find greatest 2 numbers out of 3 numbers and perform some arithmetic operations. like in following example. Example <root> <num>10</num> <num>12</num> <num>8</num> </root> for the above code xslt should display "10 + 12 = 22" and "average = 11" help me to do it. Thanks in advance!!! ...

Auto increment in xml attributes

can we use auto increment attribute in xml? ...

How to iterate the irregularly-named children of an Xml.XmlElement in Powershell?

I have an XML file of the following format: <xml> <data> <foo float="99.0"/> <bar float="12.0"/> <tribble bool="true"/> ... <flibble int="1"/> </data> </xml> If I fetch that data in Powershell, I can see all the child elements of data with a Get-Memeber: > $xmlData = [xml](Get-Content m...

Mysql, reset id's

Hey guys, take a look at this, maybe you can help me. This code is pretty much self explanatory,it repeats itself via cron job. <?php $dbhost = 'blabla'; $dbuser = 'blabla'; $dbpass = 'blabla'; $dbname = 'blabla'; $conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql'); mysql_select_db($dbname); $table = '...

Create an XSD example - Hours of Operation - One of Several Types

An example of some XML that could be sent: <hours-of-operation> <monday hourType="custom"> <open unit="AM">9:00</open> <!-- open/close or closed or 24hour --> <close unit="PM">5:00</close> </monday> <tuesday hourType="closed" /> <wednesday hourType="24hour" /> <thursday hou...

How do I use StAX instead of XPP for XStream?

I want to use a fast pull parser for XStream's reading, but the default pull parser from Java 6. (Not DOM!) What do I have to do? ...

I am having trouble getting the correct results using XML EXPLICIT in T-SQL (SQL Server 2008)

I am getting strange results from a query using XML EXPLICIT mode in T-SQL (SQL Server 2008). Can someone explain what I am doing wrong? Here is my example: declare @parents table(id int, connection int, title nvarchar(255)); declare @children table(id int, connection int, title nvarchar(255)); insert into @parents(id, connection, ti...