xml:base="." causes "Access is denied" error
Posted: Sat Aug 01, 2009 1:08 am
In xml like this
if you click on the xref in Author view an error message pops up saying "Access is denied". Once xml:base is removed the link starts to works.
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<?oxygen RNGSchema="http://www.oasis-open.org/docbook/xml/5.0/rng/docbook.rng" type="xml"?>
<article xmlns="http://docbook.org/ns/docbook"
xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0" xml:base=".">
<info>
<title>Article Template Title</title>
</info>
<sect1>
<title>Section1 Title</title>
<subtitle>Section1 Subtitle</subtitle>
<para>Text<xref linkend="a123"/></para>
<para xml:id="a123">Text</para>
</sect1>
</article>