Hi
there,
I have a xerces
schema parser question:
If I have a schema
with the attributes elementFormDefault and
attributeFormDefault defined in the root element (schema), how do I get
the value for these attributes when I use the schema parser in
xerces?
I am using the
SAXParser in xerces 1.7 like this:
SAXParser myParser = new
SAXParser;
..creating my
handler...
myParser->parse(input);
My handler does not
much, I got the grammar from the parser to build my metadata representation, so
I need somehow get the value for the above mentioned attributes.
Thanks in
advance.
Frank