You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by "Curro, Joseph" <Jo...@time0.com> on 2000/01/26 19:39:00 UTC

White space is required between the version and the encoding decl aration.

I am getting the above error whenever I try to include external entities, as
follows.  I am using Cocoon 1.6.1-dev.  When I remove the external entities,
the problem goes away.

Any ideas?

Thanks.

Joe

---

<?xml version="1.0"?>
<!DOCTYPE page [
	<!ENTITY globalnav SYSTEM "c:/searchproto/common/globalnav.xml">
	<!ENTITY copyright SYSTEM "c:/searchproto/common/copyright.xml">
]>
<?xml-stylesheet href="login.xsl" type="text/xsl"?>
<?cocoon-process type="xslt"?>

<page>
	&globalnav;
	&copyright;
	<content>Deleted for brevity.</content>
</page>