![]() |
|
|
|||||||
![]() |
XML - Parse reserved attributes as normal attributes |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
Hello everyone!
I would want to know if reserved attributes (xml:lang, xml:space, xmlns As an example: xmlns:cc="http://namespace" attr name = "xmlns:cc" attr prefix = "xmlns" attr localName = "cc" Thanks, Max Max |
|
|
|
|
#2 |
|
Posts: n/a
|
Max wrote:
> I would want to know if reserved attributes (xml:lang, xml:space, > xmlns Depends on the parser and data model you're using. The DOM displays all of these as normal attribute nodes. The XPath data model considers namespace declarations a different kind of node. SAX presents namespace declarations either as separate namespace events or as attributes or both depending on which switches you set on the parser and which events your code is actively listening for. Check the specs for the specific API you're using, and/or pick one that matches the task you're trying to perform. -- () ASCII Ribbon Campaign | Joe Kesselman /\ Stamp out HTML e-mail! | System architexture and kinetic poetry |
|