xml

Best way to add a string XML snippet into an XML document in c#?

Hello, this may have been asked before, but I could not find it. Suppose I have an XML element XMLElement nd = xmlDoc.CreateElement("Node"); Now, I would like to add a child to nd with a full XML snippet I get from some other function, like this: nd.AppendChild("<a1><a2></a2></a1>"); What is the best way to do this? Thanks. ...

How to save an xml file to disk?

I did something similar to this, but couldn't find a way to write the result to an xml file. ...

Creative ideas for display large amount of text on web page

I have a 2 column table in a database 1,000 rows long(All integer data). The display will allow for the user to delete a certain range of data from the table. What I am looking for is a creative way to display all the data so the user can get to different parts of it really fast. Maybe displaying different chunks at once, represent wit...

XML RPC GUI for developers in Windows?

Is there something like this for Windows? If not, what is the easiest/quickest way to test an XML RPC? ...

Will JSON replace XML as a data format?

When I first saw XML, I thought it was basically a representation of trees. Then I thought: the important thing isn't that it's a particularly good representation of trees, but that it is one that everyone agrees on. Just like ASCII. And once established, it's hard to displace due to network effects. The new alternative would have to...

Convert XMLDocument to DataSet ASP.Net 1.1

I need to convert XMLDocument to DataSet in ASP.Net. I do not want To Save the XMLData to any physical location. ...

XSLT: Getting the latest date

I have a structure like this: <Info ID="1"> ... <Date>2009-04-21</Date> </Info> <Info ID="2"> ... <Date>2009-04-22</Date> </Info> <Info ID="3"> ... <Date>2009-04-20</Date> </Info> I want to get the latest date using XSLT (in this example - 2009-04-22). ...

Oracle SQL*Loader getting CDATA values...

Anybody knows how to do this? I know there's a better way of loading XML data to Oracle without using SQL*Loader, but I'm just curious on how this is done using it. I have already a code that can load XML data to the DB, however, it wont run if the XML file has values that contain a CDATA... Below is the control file code which works ...

Use GZIP to boost XML-parsing

Hello all, I am facing the problem to handle many xml-files that are all greater than 70 MB. Validating and accessing them cost a lot of time. Now I am wondering if the following steps could increase my applications performence. I can compress a 70MB xml-file in a gzip-file < 1MB. So I could hold only gzip files. Working with the data...

Generate Java classes from .XSD files...?

I have a gigantic QuickBooks SDK .XSD schema file which defines XML requests/responses that I can send/receive from QuickBooks. I'd like to be able to easily generate Java classes from these .XSD files, which I could then use to marshal XML to Java objects, and Java objects to XML. Is there an easy way to do this...? Ideally, it wou...

VB.NET inserting xml nodes into an existing XML document

I'm simply trying to merge 2 xml documents (adding nodes from one into the other). I've done some Google searching, and tried a few things, but I always get the same error "The node to be inserted is from a different document context" I'm sure I'm missing something simple, just seems like this should not be that difficult. Here's my c...

How to get the root node of an xml file in Python?

Basically I am using: from xml.etree import ElementTree as ET path = 'C:\cool.xml' et = ET.parse ( path ) But I am not sure how to get the root from et? ...

EXC_BAD_ACCESS crash when releasing NSXMLParser

I'm seeing an intermittent crash on [parser release]. I'd say I see it about 5% of the time, and the data I am parsing varies between each crash. I can't for the life of me figure out why. Before I submit a bug report to Apple (which, with my luck, will not be reproducible in sample code), has anyone run into this and know what might b...

MS SQL 2005 "For XML Path" Node Layout Question

I have the following query Select field1 as 'node1/field1', field2 as 'node1/field2', (Select field3 as 'child1/field3', field4 as 'child1/field4' From table2 FOR XML PATH(''),TYPE,Elements) From Table1 FOR XML PATH('Root'),Elements This produces: <Root> <node1> <field1>data1</field1> <field2>data2<...

What is the largest XML file SSIS can extract data from?

We have an architecture where we use SSIS to extract data from XML batch files into a staging database for validation, prior to exporting it into production. We control the XML format to some extent, and I've been asked to determine what the maximum number of records the XML batch file should contain. Based on the XML schema and some s...

Importing XML into SQL Server

I can find lots of example on how to import certain types of XML data into SQL Server 2005. But I've been given data in the following format (repeating "row" and "cell" with ID's instead of the tags been named etc: <?xml version="1.0"?> <rows> <row id='1'> <cell id='category'>Simple</cell> <cell id='query'>summary</...

Is there an online tester for xPath selectors?

I know there are some online regex evaluators.. very useful, matching in real time. They are like web applications of RegexBuddy. I was wondering if there is a similar thing for xPath selectors? I am just learning them and it would be valuable to me. Is there an online tester that allows you to input XML and then an xPath selector and ...

can we use a number as text node in XML file?

can we use a number as text node in XML file? for example <2> <abi>Zen</abi> </2> it is giving the error as follows ...

XSD attributeGroup optional?

I have an attributeGroup defined in my XSD schema. From what I've read and tried out, there is no way I could specify the optionality of the usage of whole group (so that either all of the attributes are specified, or none), something like: <xs:attributeGroup name="NameDesc"> <xs:attribute name="n" type="xs:string" use="required"/>...

How can I delete and edit a specific node within a XML file by using php?

How can I delete and edit a specific node within a XML file by using php? please healp me anybody!! ...