How to use xinclude in Internet Explorer 5.0?

    When I'm trying to use xinclude, data from included xml-files does not
appear in browser window. What is my problem?
 
source.xml
<?xml version='1.0'?>
<document xmlns:xinclude="http://www.w3.org/1999/XML/xinclude">
  <p>120 Mz is adequate for an average home user.</p>
  <xinclude:include href="disclaimer.xml"/>
</document>
 
disclaimer.xml
<?xml version='1.0'?>
<disclaimer>
  <p>The opinions represented herein represent those of the individual
  and should not be interpreted as official policy endorsed by this
  organization.</p>
</disclaimer>

I get result:
<?xml version="1.0" ?> 
<document xmlns:xinclude="http://www.w3.org/1999/XML/xinclude">
<p>120 Mz is adequate for an average home user.</p> 
<xinclude:include href="disclaimer.xml" /> 
</document>

 
With best wishes, Andrew Ovcharov
[AndrewO@centreinvest.com]
 

Received on Wednesday, 8 November 2000 09:55:45 UTC