Forum: XML, XSLT and XPATH Apr 4th, 2009 |
| Replies: 1 Views: 932 You can use DOM (XML content represented in a tree) in PHP. Get a DOM node on the tag that contains the attribute, get the attributes map of that node and remove the pair that has "width" as key. |
Forum: XML, XSLT and XPATH Apr 4th, 2009 |
| Replies: 1 Views: 641 You should manipulate DOM (XML content represented as a tree) in Javascript. Look at this page for an introduction:
http://www.htmlgoodies.com/primers/jsp/article.php/3594621 |
Forum: XML, XSLT and XPATH Mar 26th, 2009 |
| Replies: 1 Views: 432 Never mind, I used a XercesDOMParser, I retrieved a DOMDocument and I called getEncoding() on that object.
If someone knows the answer of my initial question, it will be good to answer for other... |
Forum: XML, XSLT and XPATH Mar 25th, 2009 |
| Replies: 3 Views: 3,102 You're sure you want to use Internet Explorer? (This MS software can have problems opening XML files). Use Notepad or an another text viewer, if you can. |
Forum: XML, XSLT and XPATH Mar 25th, 2009 |
| Replies: 1 Views: 432 Hello, everyone!
I am using Xalan to parse a XML document. This is a glimpse of what I do:
std::string fileNameStr = fileName.Tofilename();
XalanDOMString strFileName(fileNameStr.c_str());... |
Forum: XML, XSLT and XPATH Mar 20th, 2009 |
| Replies: 5 Views: 565 I found a solution for my problem. I designed a class that derivates from PrefixResolver, a class that solves prefixes and namespaces. All I needed to do is to implement some methods, like... |
Forum: XML, XSLT and XPATH Mar 18th, 2009 |
| Replies: 5 Views: 565 I'm sorry, I'm using Xalan in C++ and I'm looking for a solution. |
Forum: XML, XSLT and XPATH Mar 17th, 2009 |
| Replies: 5 Views: 565 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... |