• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

namespace prefixes in attribute values

 
Ranch Hand
Posts: 782
Python Chrome Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Recently the WSDL1.1 note was published. http://www.w3.org/TR/wsdl
If you read the spec, you'll see that it contains
QNAMEs inside of attribute values.
e.g. <b xsi:type="xsd:boolean">true</b> where the value
of xsi:type can be another type system other than
XML schema.
My question is: does SAX/DOM support an easy way to resolve the namespace in attribute values ? (see xsd:boolean)
In SAX2, the callback method:

allows me to extract the localpart of an element and its related namespace uri.
Similarly for attribute names. But not for attribute values.
What's your take on this ?
Pho
 
reply
    Bookmark Topic Watch Topic
  • New Topic