xml

Symbols in XML attributes

Can i use symbol ':' in xml attributes like <tag1 attribute1:meaning1="true"> ...

Using Poco XMLWriter with UTF8 strings in C++

I have a problem trying to get my head around using UTF8 with Poco::XML::XMLWriter. In the following code example, everything works fine when the input contains ASCII characters. However, occasionally the string in wordmapIt->first contains a non-ASCII value, such as a character -105 occurring in the middle of a string. When this happens...

Question about Writing an XML File in .Net?

Hi, Below is the XML schema I am trying to conform to: <?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"&gt; <url> <loc>http://www.example.com/&lt;/loc&gt; <lastmod>2005-01-01</lastmod> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> ...

XML file generation error with Doctype statement only during run-time in C#

Hi, Requesting for anyones' kind help to solve a protracted problem, as described below. I am generating XML files using C# (VS 2008). Environment is Windows Server 2003. There is no problem in generation of the XML files for any of the purposes unless when I use a specific Doctype like given below: _fileHandler.FileHeader.Append("?xm...

XML Parsing error

Hi, I am returning a DataTable from a WebService which contains 10-100 rows depending on the query. Sometimes in this DataTable, i have some special characters coming in, like "$", which causes the problem and i get XML Parsing Error. One way i found was to Encode the string but I don't want to loop through each rows and column and en...

Best approach for RDF output CMS

Hi, Can anyone recommend a good CMS which will output PURE RDF documents (I don't just want HTML pages with RDF properties). I basically want to have a database containing some data and have the CMS format that into pure XML RDF documents. I know Drupal has limited support but this seems to just add RDF attributes to HTML elements. An...

SQL 2005 XML Search

Hello, I have a large XML document in Xml column within SQL Server. I need to basically perform a free text search across the elements in the document. Would you use A) SQL Free Text Search B) A stored procedure that traverses the XML and checks each value of each element C) Use Lucene.NET to build an Index on the fly and search the i...

[android] Preferred method for XML layouts: explicit attributes or styles.xml?

Currently I'm mixing explicit attributes (layout_width, height, alignment) on my various XML layouts with coded styles in styles.xml, plus outsourcing colors from colors.xml. From your experience, what's the recommended way to organize an android app's layouts? ...

Is this an inefficient way to parse XML?

I'm probably worrying about wrong optimization, but I have this nagging thought that it's parsing the xml tree over and over and over again, maybe I read it somewhere. Can't remember. Anyways, here's what I'm doing: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml.Linq; using System...

How can I parse the information from this XML?

Hi guys, this is an example of the XML I want to scrape: http://www.dreamincode.net/forums/xml.php?showuser=335389 Notice that the contactinformation tag has many contact elements, each similar but with different values. For example, the element that has the AIM content in it, how can I get the content of the Value tag that's in the s...

Don't understand "Object required" error

I have the following ASP classic function: function get_children(n) dim local_array dim parent dim path if n.hasChildNodes() then for each child in n.childNodes local_array = array_merge(local_array, get_children(child)) next else set parent = n.parentNode while isobject(parent) path = parent.nodeNa...

c# encrypt xml file

Tell me the easiest way to encrypt an XML file. It is a file used for some configurations and don't want people mucking around with it. Security is not an issue as it is a private tool. ...

content type may be?

I have an xml file saved and this is what I want to do, when some one click the link that contains an xml file, I want them to ask the question if they want to save or open the file. I know there is a way to do this using http header to send and trick your brower into using the application/octet-stream mime type, but I forgot how it wa...

substituting xml values programatically with scala

I'm writing a tool to update some xml files (pom.xml in this case) with scala because the effort it would take in java is significantly higher than (in theory) it is with scala. I can parse the xml file just fine, but I need to replace nodes in the existing xml and rewrite the result. for example: <dependency> <groupId>foo</groupId>...

XML Dom prcocessing probelm

i want to modify xml file using dom ,but when i make node.getNodeValue(); it returns null !i don't know why ?my xml file contains the following tags : [person] which contains child [name] whcih contains childs [firstname ,middleInitial ,lastName] childs i want to update First name , middleInitial and last name using dom this is my java...

Error while trying to parse a YouTube search feed

Hello, I'm using SimpleXML to parse a YouTube search feed. I want to get the first result in the feed after searching for a term. Right now my code looks like this: set_time_limit(0); // Include needed files require_once "config.php"; $xml = simplexml_load_file('http://gdata.youtube.com/feeds/base/videos?q=V.I.P.+KE%24HA&amp;client=y...

Benefits of Document Orriented DBs to an existing folder structure

I would like to preface by saying I guess there is no real tangible problem, but I feel odd not having some system managing these things. We currently have a large amount of XML files located in hierarchy of directories. I think it could be useful to use some Document Oriented DB around these folders. It could be extremely useful for s...

Parsing XML response in PHP (and/or Zend Framework)

I am using the Zend Framework and using Zend_Http_Client to make a POST request to a third party API. $client = new Zend_Http_Client('http://api.com'); $client->setParameterPost(array( 'param1' => 'value' )); $response = $client->request('POST'); echo $response->getBody(); This API returns an XML document as its response. <?xml...

Confused about reading XML Data C#

i'm dramatically confused with reading XML...I feel in way over my head. currently, using the XML below as an input source, i'm able to get all of the names by using XmlNodeList name = xDoc.GetElementsByTagName("Name"); int i; for (i=0; i < sent.Count; i++) { MessageBox.Show(name[i].InnerText); } When I try to do the same for id...

Android XML: Centering Horizontally On Bottom

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView android:text="Title" android:id="@+id/TextView01" android:layout_width="wra...