Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

[Duplicate question: see here for answer ("No, don't qualify the attributes")]

This is my first time working with XML namespaces, and I want to make sure I'm doing this right. Strangely, for such a simple thing, I can't find anything on SO that addresses the question:

I've got a namespace-qualified XML element with some attributes. Do the attributes need to be qualified too, or does the scope extend to them?

<foo:tag value="bar" />

or

<foo:tag foo:value="bar" />
share|improve this question
1  
Attributes do need to be qualified (unless belonging to the default namespace). – Oded May 5 '12 at 20:07
1  
@KevinCollins Sure enough, already been asked. Thanks! – Ternary May 5 '12 at 20:17
possible duplicate of XML namespaces and attributes – skaffman May 5 '12 at 21:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.