From: "bear" <[EMAIL PROTECTED]>
> My tiles-defs.xml has the following line,
> ------------------------------------------------------
> <?xml version="1.0"?>
> <!DOCTYPE struts-config PUBLIC
>   "-//Apache Software Foundation//DTD Tiles Configuration 1.1//EN"
>   "http://jakarta.apache.org/struts/dtds/tiles-config_1_1.dtd";>

Fix your doctype declaration...

<!DOCTYPE tiles-definitions PUBLIC
       "-//Apache Software Foundation//DTD Tiles Configuration 1.1//EN"
       "http://struts.apache.org/dtds/tiles-config_1_1.dtd";>

See how yours says struts-config before PUBLIC?  That's wrong, it should say
tiles-definitions.

Here's a good reference on what all the different pieces of a doctype
declaration mean:
http://www.blooberry.com/indexdot/html/tagpages/d/doctype.htm

-- 
Wendy Smoak


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to