XML comments
Evangelos Haleplidis <[email protected]> Tue, 19 Jun 2007 16:44:45 +0300
| Newsgroups | gmane.ietf.forces |
|---|---|
| Message-ID | <000301c7b278$0261c510$0501a8c0@gaglaptop> |
Greetings again to the list,
For previous XML comments I have created issue No. 115 for the model draft.
However the following concerns both the protocol and the model, since the
XML of the protocol LFB resides in the protocol draft, while the LFB schema
resides in the model draft.
Regards,
Evangelos Haleplidis.
------------------------------
I parsed the XML of the FEProtocol LFB with the latest Schema provided by
the latest model draft with the Altova XML Spy. It has two errors (of the
same kind).
In the capabilities section the:
access="read-only"
cannot exist.
I experimented a little to see how this problem can be averted and the only
solution I could find was to alter somehow the lfb schema and then the FE
Protocol LFB.
The proposed change in the model draft:
A very small change. A line is needed to be inserted in page 80 after line
43 (<xsd:element name="name" type="xsd:NMTOKEN"/>):
<xsd:element name="access" type="accessModeType"/>
And now in the protocol draft the FE Protocol LFB can be changed to:
Page 98 Line 48
...
<capability elementID="30">
<name>SupportableVersions</name>
<access>read-only</access>
...
And
Page 99 Line 9
...
<capability elementID="31">
<name>HACapabilities</name>
<access>read-only</access>
...