In article <40******@news.victoria.tc.ca>,
Malcolm Dew-Jones <yf***@vtn1.victoria.tc.ca> wrote:
What is the correct way to associate the attributes with the tag if the
tag has a name space associated with it and the attribute doesn't have a
name space?
Elements are no namespace are interpreted according to the element they
appear on.
<mytag
xmlns:mine="my/default/name/space"
xmlns:theirs="Some/one/elses/name/space" >
<mine:atag mine:attr1="my value" attr1="whatever" theirs:attr1="another">
So in this case you would expect to find the "attr1" attribute described
along with the description of mine:atag.
-- Richard