Accessing default attributes from DTD

Amit Rekhi (amitr@abinfosys.com)
Thu, 14 May 1998 14:55:44


Hello All,
I want to access default attributes of elements of an XML file(say
A.xml) defined in A.xml's DTD (A.dtd) in an HTML file (say A.html) which
invokes the MSXML java parser and loads the A.xml file.

Let me explain my scenario

The A.dtd contains :-
.......
<!ATTLIST TEMP
ATTR-1 NUMBER #FIXED "0">
.........

The A.xml file contains :-
.....
<TEMP>....</TEMP>
......

In my A.html file I want to access <TEMP>'s default attribute ATTR-1
(defined in A.dtd) after I parse the A.xml file into a tree using MSXML
java parser.

How would I do that???

Any suggestions would help,

Thanx in Advance,
AMIT