3 Mar 2009 at 14:45 #1 Energize Energize Caporegime Joined 12 Mar 2004 Posts 29,962 Location England Fixed Last edited: 3 Mar 2009
3 Mar 2009 at 14:58 #2 Whitman Whitman Associate Joined 28 Nov 2005 Posts 62 Location Darlington At a guess I'd say it was because you have an element called 'name' which is conflicting with the 'name' attribute.
At a guess I'd say it was because you have an element called 'name' which is conflicting with the 'name' attribute.
3 Mar 2009 at 14:59 #3 Pho Pho Soldato Joined 18 Oct 2002 Posts 9,336 Location Derbyshire You aren't specifying a type.. i.e. Code: <xs:element minOccurs="0" name="name" type="xs:string" /> Alternatively just use this to build/validate your schema/XML files through a GUI: http://www.liquid-technologies.com/XmlStudio/XmlStudio.aspx
You aren't specifying a type.. i.e. Code: <xs:element minOccurs="0" name="name" type="xs:string" /> Alternatively just use this to build/validate your schema/XML files through a GUI: http://www.liquid-technologies.com/XmlStudio/XmlStudio.aspx
3 Mar 2009 at 15:26 #4 Energize Energize Caporegime OP Joined 12 Mar 2004 Posts 29,962 Location England EDIT - Nevermind Fixed it. It was because I forgot to put <xs: element name=""> like you said. Last edited: 3 Mar 2009