My XML schema has the rule:

<xs:attribute name="A" type="xs:QName" use="required"/>

I want to be able to provide a wildcard to my XML rule file for this tag e.g.

<Element A="<wildcard_character>" Operation="doStuff">

Normally the value of the attribute is a regular qualified string name but I'd like to be able to provide a wildcard character as well in some cases. Is there such a character for the type xs:QName? I've tried * with no luck. Alternatively, is there a type which would allow wildcards?

No luck with google so I'd be grateful for any suggestions.

link|improve this question
feedback

2 Answers

A QName is a "qualified name". "*" is not a name of any kind. Sorry.

link|improve this answer
I figured as much. Do you know of another type I could use which allows wildcards? – Kalle Nov 11 '10 at 8:19
There is no such thing as wildcards. They are only characters. You simply need a type that permits that character, like xs:string. – John Saunders Nov 12 '10 at 16:13
feedback

Perhaps you can use _ (underscore), as in operator like in sql ?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.