3,634 Topics
| |
What are some of the advantages of using XSLT and XPATH version 2.0 over their 1.0 predecessors? Any disadvantages? | |
Hi i am new to use java. on compling my java file in tomcat server i get cannot resolve symbol symbol : method getAttribute (java.lang.String) location: interface org.w3c.dom.Node out.println(photoElements.item(iElement).getAttribute("id")); and the line he is referring to is for(int iElement = 1; iElement < 10; iElement++) { out.println(photoElements.item(iElement).getAttribute("id")); i am not … | |
I want to pass a php variable into xml script. Essentially what I want to achive is: var xmlvariable= '$phpvariable'; Is there a simple solution to this? Many Thanks Nick | |
Hello, i was wondering how you would go about having an RSS feed on my homepage that automatically updates when there is a new post in a certain Forum. For example: I want to have a Forum that only admins can post in, the posts in this forum are then … | |
I'm running into problems with my XML format when I generate it with SQL. I'm using SQL Server 2005. I have a query that uses FOR XML PATH that will return XML for me but it does work well with the formatting. I'm not a XML guru but when I … | |
I wish to parse an xml file but after a lot of reading, am confused by the various compilers available for for it. What would be the best way to parse an XML file and what sort of compiler/parser would you use for it? | |
Hi all How can we modify the attribute of a node using DOM in php? For eg : [code]<node width="50"> <detail>test</detail> </node>[/code] i want to modify the attribute width as 100 using the php code? how can i do this? Thanx in advance... | |
Hello, everyone! I am using Xalan to parse a XML document. This is a glimpse of what I do: [CODE] std::string fileNameStr = fileName.Tofilename(); XalanDOMString strFileName(fileNameStr.c_str()); LocalFileInputSource srcFile(strFileName.c_str()); XalanDocument* document = parserLiaison.parseXMLStream(srcFile); [/CODE] What I want to do is to know the encoding of the source document. There is no … | |
Hi, I was wondering if anyone out there could provide a few pointers to me on how to get started using a XML web service. It's a holiday feed so includes things like flights, bed banks etc But what I'm wondering is how do you query and get results from … | |
Hi Everyone: I am trying to use google code rest-client ([url]http://code.google.com/p/rest-client/downloads/list?can=1&q=&colspec=Filename+Summary+Uploaded+Size+DownloadCount[/url]) to query a REST web server. But, I could not use it properly as after logging in to the web server, the session expires immediately. I am just wondering if it is by design or I am doing something … | |
Hi all, I am working on Xalan-J XSLT processor.I have implemented the javascript extension function but in runtime it is showing TransformerException. Please help me on this. I am using `jdk1.6` and included `xalan.jar,xercesImpl.jar,xml-apis.jar;serializer.jar;bsf.jar;js.jar;xsltc.jar` into my classpath. Hereby, I am attaching the code what I have written <?xml version="1.0"?> <xsl:stylesheet … | |
[COLOR=black]Hey all i am trying to make an XML file but I'm getting an error. The error is [/COLOR][COLOR=black]The XML page cannot be displayed [/COLOR][COLOR=black]Cannot view XML input using XSL style sheet. Please correct the error and then click the [/COLOR][URL="http://javascript<b></b>:location.reload()"][U][COLOR=black]Refresh[/COLOR][/U][/URL][COLOR=black] button, or try again later. [/COLOR] [COLOR=black]A name contained … | |
I am working in VCL components in IDE.I need to create a project file in xml.Can anyone help me? | |
xml file contains number of nodes i just want to read last two nodes how do i do that | |
[ICODE]How to parse some selected information from XML file using php [/ICODE] | |
we do not have go to each and individual site, just rss of particular portion of the site can be pasted in rss reader and from rss reader we can have that much portion of the site in our rss reader. so we do not have to navigate the site. | |
Hi, everyone! At work, I'm having problems to run a XPath using the selectNodeList() method from Xalan. The XPath I want to execute is: //pam:message//prism:coverDate The error message I have is: The prefix 'pam' is not declared. expression = '//pam:message//prism:startingPage' Remaining tokens are: ('/' '/'). I have searched on the … | |
Given the following XML: [ICODE]<FlowDocument> <Run FontStyle="Italic" FontWeight="Bold">test</Run> </FlowDocument>[/ICODE] How could I get this result?: [ICODE]<body> <em><strong>test</strong></em> </body>[/ICODE] Thanks in advance! | |
My input xml/xmi file contains special characters like <>,space and " .When i am applying XSLT transform on it these as coming as it is or in some different format like <-><,>->> and "e ->".I nees those to come as coresponding symbols like <,> or ". For space i used … | |
hello everyone am trying to encrpyte and decrypte xml file in vb.net ca anyone help me.thanks alot | |
hello everyone am trying to encrpyte and decrypte xml file in vb.net ca anyone help me.thanks alot | |
hi, I have a gallery, upon clicking a gallery set, the page should open it's photos without refreshing, therefore i use XMLHttpRequest. It works fine if i am display just plain text/images, but im trying to display javascript & html content. I want to display my "smoothgallery" according to gallery … | |
Whats the difference between loading an XML into a string or from a file stream? | |
Ok so I have this xml file [code] <?xml version="1.0" encoding="utf-8"?> <rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"> <channel> <atom:link rel="self" href="http://www.ubcmiami.org/podcasts/podcast.xml" type="application/rss+xml" /> <lastBuildDate>Mon, 09 Mar 2009 17:17:39 -0400</lastBuildDate> <title>UBC Miami - Messages</title> <itunes:author>UBC Miami</itunes:author> <link>http://www.ubcmiami.org</link> <generator>Podcast Maker v1.3.8b - http://www.lemonzdream.com/podcastmaker</generator> <description><![CDATA[Weekend Messages from UBC in Miami, FL. We are transformational community … | |
What is the difference between a well-formed XML document and a 'valid' XML document? What are some ways to determine if an xml document is well-formed and/or valid? (looking for websites and/or software) | |
hi! i'm relatively new to xpath and im trying to include a search facility in my website which searched through my xml file. the format of the xml file is as follows: [CODE=xml] <years> <year> <life> <title>...title...</title> <full>...full text... </full> </life> </year> ..... </years> [/CODE] i need to retrieve all … | |
I have this xml snippet: <book id="bk102"> <author name= "Smith, john" > <title>Test book</title> <genre>Other</genre> <price>30.00</price> <publish_date>2003-10-01</publish_date> </author> </book> and I am writing an xpath parser this way: //book[@id='bk102']//book[@genre ='Other']//book[price=30.00] I know that I can get it by using just the first query, ( //book[@id='bk102'] ) but what if I … | |
Another XML question. I am ably to load a XML file (via a filepath) to a datatable. See code below. However, I'd like to be able to load a in-memory XML document to a datatable. Can anyone help me out? [code] Public Function XmlToDataTable(ByRef filePath As String) As DataTable Dim … | |
Hi, can anyone let me to know if it is possible to use or operator while searching for something in an xml document. contains(@text,'x') works perfecly, but how if I want to pefrom something like contains(@text,'x','Y') Thanks for taking time to reply to this post. Amin | |
Looking for some help! I have loaded XML doc into a dataset (see below). That went ok. So now I can put the DS in a grid and change it. However, after changing the DS I want to export it back to a XML doc. That only succeeds partially. I … |
The End.