I'm building a tool that authors/edits XML files, and I want to be able to populate it with template fragments defined in another XML file.
For example, the tool has an "Add FooBarBaz Element" button that adds a element to the new document being created, and I want to add FooBarBaz by copying it from a template.
Or let's say this is m...
I want to pass external XML a variable. How do I do this?
WHAT I'M AFTER
- update my variable with COUNT XML
WHAT I'M NOT GETTING
- The integer to String values
- How to pass XML to a variable
link http://videodnd.weebly.com/
time.xml
<?xml version="1.0" encoding="utf-8"?>
<SESSION>
<COUNT TITLE="starting position">-77777</COUN...
I am having problems with working with a third party XML string that contains a Namespace with LINQ to XML.
In the below code everything works find. I am able to select the xElement (xEl1) and update its value.
'Example Without Namespace
Dim XmlWithOutNs = _
<?xml version="1.0"?>
<RATABASECALC>
<RATEREQUEST>
...
I am maintaining this servlet that has a HttpServletResponse response that replies back to the client an XML message. I want to take the XML message and convert it to JSON, then send the JSON back.
I want to avoid writing my own JSON converter if possible. Does anyone have a good method of doing this?
I googled for this: http://pvoss.w...
There are 3 IDOMImplementation available in Delphi:
MSXML
Xerces XML
ADOM XML v4
MSXML is the default IDOMImplementation.
My test is count the time need to load a 10MB xml file. I use a Delphi unit generated from a XSD using XML data binding to load the xml file. This unit has 3 common function:
function Getmenubar(Doc: IXMLDocum...
Given an XML structure like this:
<garage>
<car>Firebird</car>
<car>Altima</car>
<car>Prius</car>
</garage>
I want to "move" the Prius node "one level up" so it appears above the Altima node. Here's the final structure I want:
<garage>
<car>Firebird</car>
<car>Prius</car>
<car>Altima</car>
</garage>
So given the C# code:
Xm...
Hey guys,
I am trying to make an xml file to export my data from my database to my iphone. Each time I create a new post, I need to execute a php file to create a xml file containing the latest post ;)
Okay so far ? :D
Here is current php code ... but my nsxmlparser gives me an error code (33 - String is not started). I have no idea w...
Why all use binary files, if all can use XML ?
...
Hi
I have a SOAP message (see below).
Using Xpath, how can I extract the name of the namespace from this message? In other words, is there an Xpath routine that will return the text "validateNewOrder"?
Any suggestions or help would be invaluable. I have been searching everywhere but not found an solution. It is driving me crazy...
...
I'm using .NET 3.5. We have some complex third-party classes which are automatically generated and out of my control, but which we must work with for testing purposes. I see my team doing a lot of deeply-nested property getting/setting in our test code, and it's getting pretty cumbersome.
To remedy the problem, I'd like to make a fluent...
My XML scripts work fine in the local swf. If I load an external swf, can I still retrieve XML data from the same way. What problems will I encounter with XML and externally loaded swf files?
Based on looking at my sample code, some response about XML problems would be appreciated. Thanks.
VARIABLE TYPES
var timer:Timer = new Timer(...
Hey Everyone,
I'm currently following: http://railsontherun.com/2007/10/04/sexy-charts-in-less-than-5-minutes/
I went through it all pretty easily, but then when viewing the page with the chart, it loads (in flash) a black rectangle with the error:
"Error loading file http://localhost:3000/reports/population.xml"
Someone in the comme...
Hi.
I am new to the googlemaps API. I have written a small app for my mobile phone that periodically updates its location to an SQL databse.
I would like to display this information on a googlemap in my browser. Ideally i'd like to then poll the database periodically and if any new co-ords have arrived, add them to the line.
Best way...
I'm having difficulty doing this seemingly simple task. I want to load XML files with the same ease of loading art assets:
content = new ContentManager(Services);
content.RootDirectory = "Content";
Texture2d background = content.Load<Texture2D>("images\\ice");
I'm not sure how to do this. This tutorial seems h...
My XML file
<tns:SampleInfoResponse xsi:schemaLocation="sampleNS test.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="sampleNS">
<tns:SampleInfo>
<tns:firstName>String</tns:firstName>
<tns:lastName>String</tns:lastName>
<tns:lbn>String</tns:lbn>
<tns:LSampleDetails>
<tns:SampleState>String</tns:Sam...
I've tried unsuccessfully for quite a few hours now to simply get a TableLayout to scale to the full screen. I've tried stretchColumns, shrinkColumns, (specifying the column index or using *) you name it.
It's almost as if the parent element (TableLayout) is completely ignoring 'android:layout_width="fill_parent"'.
I've read through s...
here is my xml DOM.
<entities>
<entity id="7006276">
<title>xxx</title>
<entities>
<entity id="7877579">
<title>xxx</title>
<entities>
i want to get the 'entity' with id 7006276 so i could access its child 'entities' t...
I have a bunch of XML files that are about 1-2 megabytes in size. Actually, more than a bunch, there are millions. They're all well-formed and many are even validated against their schema (confirmed with libxml2).
All were created by the same app, so they're in a consistent format (though this could theoretically change in the future)....
I'm trying to read the following Xml document as fast as I can and let additional classes manage the reading of each sub block.
<ApplicationPool>
<Accounts>
<Account>
<NameOfKin></NameOfKin>
<StatementsAvailable>
<Statement></Statement>
</StatementsAvailable>
</Acco...
How do I get the exact feed.xml/rss.xml/atom.xml path of a website?
For example, I supplied "http://www.example.com/news/today/this_is_a_news", but the rss is pointing to "http://www.example.com/rss/feed.xml", most modern browsers have this features already and I'm curious how did they get them.
Can you cite an example code in ruby, py...