<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2800.1106" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Hello, I'm trying to make a recursive nested
xmlcontent in order to build a hierarchic structure (a menu). The xsd file is as
follows:</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2><xsd:schema xmlns:xsd="<A
href="http://www.w3.org/2001/XMLSchema">http://www.w3.org/2001/XMLSchema</A>"
elementFormDefault="qualified"><BR> <BR> <xsd:include
schemaLocation="opencms://opencms-xmlcontent.xsd"/> <BR> <xsd:element
name="Menus" type="OpenCmsMenus"/><BR> <BR> <xsd:complexType
name="OpenCmsMenus"><BR> <xsd:sequence><BR> <xsd:element
name="Menu" type="OpenCmsMenu" minOccurs="0"
maxOccurs="unbounded"/><BR> </xsd:sequence><BR> </xsd:complexType></FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2> <xsd:complexType
name="OpenCmsMenu"><BR> <xsd:sequence><BR> <xsd:element
name="Title" type="OpenCmsString" minOccurs="0"
maxOccurs="unbounded"/><BR> <xsd:element name="Menu"
type="OpenCmsMenu" minOccurs="0"
maxOccurs="unbounded"/><BR> <BR> </xsd:sequence><BR> <xsd:attribute
name="language" type="OpenCmsLocale"
use="required"/><BR> </xsd:complexType></FONT></DIV>
<DIV><FONT face=Arial size=2> </DIV>
<DIV></xsd:schema></DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV>The problem is that when I modify the control code of the respective
contentxml file, opencms doesn't recongnize the nested OpenCmsMenu complex
type.</DIV>
<DIV> </DIV>
<DIV>Does anyone know if am I doing something wrong or if what I'm trying to do
is no possible?</DIV>
<DIV> </DIV>
<DIV>Thank you very much in advance.</FONT></DIV></BODY></HTML>