xml

Is it a god awful idea to generate lots of nested arrays in PHP?

I want to transform the 'values' array created by xml_parse_into_struct() into a bunch of nested arrays which I can walk recursively. This is for a very simple XML class which will hierarchically search the document like so: $xml_data = " <sometag> <someothertag> <somedata>foo</somedata> </someothertag> <someothertag...

Please tell me how to find and replace particular word in a file using vb.net

i have created a template xml file witch contain some words like {contentname}. i need to replace such a tags with my values. please tell me how to search such a words and replace using filehandling in vb.net my xml templatefile is like this: <!-- BEGIN: main --> <?xml version="1.0" encoding="UTF-8"?> <OTA_HotelSearchRQ xmlns="http://ww...

Best practices when using XML for PHP configuration?

I was planning to use an XML document to store configuration for my next PHP project, in a format similar to ASP.NET Web.Config files. Just two concerns: Cannot be served to the browser. Must be viable in shared hosting. The best way I could think to prevent it from being served is to change the filetype to PHP and add the following ...

XSLT for selecting namespaced attributes

After giving up on PHP I'm trying to extract data from the xml using XSLT How do i match the data in <jskit:attribute key="permalink" I saw another similar question about name value pairs but im one step away from that My xml is given here xml source ...

Opensearch plugin: Use %20 instead of + space encoding

Is there a way to write an open search plugin to encode a space character into %20 instead of into + character? I.e. the lala plugin -- http://mycroft.mozdev.org/search-engines.html?name=lala -- contains the following line: <os:Url type="text/html" method="GET" template="http://www.lala.com/#search/{searchTerms}"&gt; Searching for Tom...

Read escaped quote as escaped quote from xml

Hello. I load xml file into DOM model and analyze it. The code for that is: public class MyTest { public static void main(String[] args) { Document doc = XMLUtils.fileToDom("MyTest.xml");//Loads xml data to DOM Element rootElement = doc.getDocumentElement(); NodeList nodes = rootElement.getChildNodes(); Node chi...

please tell how can i findout node object of any attribute.

i have got a object of attribute and i want to know what is its node name (who contain this attribut) .. please give me solution (vb.net preferable).. ...

Removing version from xml file

I am creating a Xml like format using XmlWriter. But in the output there is version information also. <?xml version="1.0" encoding="utf-8"?> I don't need this in my file. How can I do that? Is there any way to remove it by code? ...

How do I add XML data into an local XML file, so I can read it later.

I want to save XML data into a XML file. So I can load it on the next startup. ...

C# LINQ with XML, cannot extract multiple fields with same name into object

Trying to read into an object the following XML file (can be changed) into a VAR using LINQ XML. <?xml version='1.0'?> <config> <report> <name>Adjustment Report</name> <extension>pdf</extension> <filetype>adobe_pdf</Filetype> <field name="total" type="currency" /> <field name="adjust" type="cu...

How to render a doctype with Python's xml.dom.minidom?

minidom, again. tried document.doctype = xml.dom.minidom.DocumentType('html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"') There is no doctype in the output. How to fix without inserting it by hand? ...

Escaping XML in VB.NET 2.0

Below is my code to transform XML using XSLT: Private Sub Transform(ByVal XslUri As String, ByVal XmlString As String, ByVal OutputUri As String) ' Create the XslTransform object and load the style sheet Dim xslt As New XslCompiledTransform() xslt.Load(XslUri) ' Load the file to transform Dim input As XmlReader = Xm...

Best practice for updating a excel or xml data-source in a disconnected environment?

Hello, I have a application that will be run offline so there is no database connection. My options for the data-source are Excel Spreedsheet, CSV, or XML files. The application needs to be able to search for a record and update it. What's the best way to do this? Should I load the entire spreadsheet into memory and then work with it ...

C#: Explicit Namespace not Appearing in Generated XML.

Given the following C# code to generate an XML file: XmlDocument requestXML = new XmlDocument(); XmlDeclaration declaration = requestXML.CreateXmlDeclaration( "1.0", "utf-8", null ); requestXML.AppendChild( declaration ); XmlElement soapEnvelope = requestXML.CreateElement( "soap:Envelope" ); soapEnvelope.SetAttrib...

Using xsi:nil in XML

I am generating an XML file from a VB.NET app. The document was generating fine before I tried to add nillable elements. I am now testing putting in just one nil element as: <blah xsi:nil="true"></blah> Once this element is in place and I try to view the XML file in IE it is unable to display. I am receiving: > The XML page canno...

Is there any way to specify a bootstrap target in an ANT build file?

In my Ant build file, I'm using an encrypted property which I'm reading off a text file. I need to decrypt this in sort of a bootstrap target during my build process. How do I do this? As an example, here are the contents of the files. myFile.txt: ENCRYPTED=encryptedtext build.xml: <project name="myProject" default="all"> <property...

Using XPath, How do I select a node based on its text content and value of an attribute?

Given this XML: <DocText> <WithQuads> <Page pageNumber="3"> <Word> July <Quad> <P1 X="84" Y="711.25" /> <P2 X="102.062" Y="711.25" /> <P3 X="102.062" Y="723.658" /> <P4 X="84.0" Y="723.658" /> </Quad> </Word> <...

Strange behaviour of TableRow as a LinearLayout

Hello everyone. I've noticed a strange thing with a TableRow. <TableLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:stretchColumns="0"> <TableRow android:background="#9932cc" android:minHeight="40px" android:orientation="h...

Wrap XML Element wth text using Java?

I want to transform XML like this: <account>Wally World</account> <city>Anywhere</city> <state>CA</state> Into this by wrapping each element with equals and single quote i.e. ='' <account>='Wally World'</account> <city>='Anywhere'</city> <state>='CA'</state> Need to transform all the element text in large XML files using Java, mayb...

How to display a custom google search result in a new page

Am using Custom Google search in my web page Code: <div id="cse" style="width: 100%;">Loading</div> <script src="http://www.google.com/jsapi" type="text/javascript"></script> <script type="text/javascript"> google.load('search', '1', {language : 'en'}); google.setOnLoadCallback(function(){ var customSearchControl = new google.s...