-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: MappingException: The 'name' attribute is not declared
PostPosted: Mon Sep 11, 2006 12:39 am 
Newbie

Joined: Mon Sep 11, 2006 12:19 am
Posts: 1
Location: Texas
[i]NHibernate.MappingException: The 'name' attribute is not declared.[i]

Im getting this message as the message of a Mapping Exception. The Query is mearly "FROM Person". It gets thrown while doing a CreateQuery("From Person"). I'm sure I am just missing something in my mappings (See below).

Thanks for any light you can shed on the problem.

- Roger

Hibernate version: 1.2.0.Alpha1

Mapping documents:
Person:
Code:
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.0" assembly="TexSoftUsa.Core" namespace="TexSoftUsa.Core.Model">
   <class name="Person" table="Person">
      <id name="ID" column="PersonID" type="Int32">
         <generator class="native" />
      </id>
      <property name="Title" column="Title" />
      <property name="FirstName" column="FirstName" />
      <property name="LastName" column="LastName" />
      <bag name="Details" access ="field" table="PersonDetail" cascade="all" lazy="false" inverse="true">
         <key column="PersonID" />
         <one-to-many class="TexSoftUsa.Core.Model.PersonDetail, TexSoftUsa.Core" />
      </bag>
   </class>
</hibernate-mapping>


PersonDetail
Code:
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.0" assembly="TexSoftUsa.Core" namespace="TexSoftUsa.Core.Model">
   <class name="PersonDetail" table="PersonDetail" discriminator-value="?">
      <id name="ID" column="PersonDetailID" type="Int32">
         <generator class="native" />
      </id>
      <discriminator name="PersonDetailType" column="Type" />
      <property name="PersonDetailSubType" column="SubType" />
      <property name="Value" column="Value" />
      <subclass name="TexSoftUsa.Core.Model.PhoneNumber, TexSoftUsa.Core" discriminator-value="Phone" />
      <subclass name="TexSoftUsa.Core.Model.EMailAddress, TexSoftUsa.Core" discriminator-value="EMail" />
   </class>
</hibernate-mapping>


Code between sessionFactory.openSession() and session.close():
Code:
  IQuery theQuery = this.session.CreateQuery("FROM Person");
  IList<Person> per = theQuery.List<Person>();


Full stack trace of any exception that occurs:
Quote:
A first chance exception of type 'System.Xml.Schema.XmlSchemaException' occurred in NHibernate.dll
A first chance exception of type 'NHibernate.MappingException' occurred in NHibernate.dll
A first chance exception of type 'NHibernate.MappingException' occurred in NHibernate.dll
A first chance exception of type 'System.TypeInitializationException' occurred in TexSoftUsa.Dao.NHibernate.dll
System.TypeInitializationException: The type initializer for 'Nested' threw an exception. ---> NHibernate.MappingException: The 'name' attribute is not declared. ---> System.Xml.Schema.XmlSchemaException: The 'name' attribute is not declared.
at NHibernate.Cfg.Configuration.ValidationHandler(Object o, ValidationEventArgs args) in c:\net\nhibernate\nhibernate\src\NHibernate\Cfg\Configuration.cs:line 1562
at System.Xml.Schema.BaseValidator.SendValidationEvent(XmlSchemaException e, XmlSeverityType severity)
at System.Xml.Schema.XsdValidator.ValidateStartElement()
at System.Xml.Schema.XsdValidator.ProcessElement(Object particle)
at System.Xml.Schema.XsdValidator.ValidateElement()
at System.Xml.Schema.XsdValidator.Validate()
at System.Xml.XmlValidatingReaderImpl.ProcessCoreReaderEvent()
at System.Xml.XmlValidatingReaderImpl.Read()
at System.Xml.XmlValidatingReader.Read()
at System.Xml.XmlLoader.LoadNode(Boolean skipOverWhitespace)
at System.Xml.XmlLoader.LoadDocSequence(XmlDocument parentDoc)
at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
at System.Xml.XmlDocument.Load(XmlReader reader)
at NHibernate.Cfg.Configuration.LoadMappingDocument(XmlTextReader hbmReader) in c:\net\nhibernate\nhibernate\src\NHibernate\Cfg\Configuration.cs:line 1539
at NHibernate.Cfg.Configuration.AddXmlReader(XmlTextReader hbmReader) in c:\net\nhibernate\nhibernate\src\NHibernate\Cfg\Configuration.cs:line 1556
at NHibernate.Cfg.Configuration.AddInputStream(Stream xmlInputStream) in c:\net\nhibernate\nhibernate\src\NHibernate\Cfg\Configuration.cs:line 416
--- End of inner exception stack trace ---
at NHibernate.Cfg.Configuration.AddInputStream(Stream xmlInputStream) in c:\net\nhibernate\nhibernate\src\NHibernate\Cfg\Configuration.cs:line 426
at NHibernate.Cfg.Configuration.AddAssembly(Assembly assembly, Boolean skipOrdering) in c:\net\nhibernate\nhibernate\src\NHibernate\Cfg\Configuration.cs:line 598
at NHibernate.Cfg.Configuration.AddAssembly(Assembly assembly) in c:\net\nhibernate\nhibernate\src\NHibernate\Cfg\Configuration.cs:line 552
at NHibernate.Cfg.Configuration.AddAssembly(String assemblyName) in c:\net\nhibernate\nhibernate\src\NHibernate\Cfg\Configuration.cs:line 533
at NHibernate.Cfg.Configuration.DoConfigure(XmlDocument doc) in c:\net\nhibernate\nhibernate\src\NHibernate\Cfg\Configuration.cs:line 1304
at NHibernate.Cfg.Configuration.Configure(XmlTextReader reader) in c:\net\nhibernate\nhibernate\src\NHibernate\Cfg\Configuration.cs:line 1263
at NHibernate.Cfg.Configuration.Configure(String resource) in c:\net\nhibernate\nhibernate\src\NHibernate\Cfg\Configuration.cs:line 1176
at NHibernate.Cfg.Configuration.Configure() in c:\net\nhibernate\nhibernate\src\NHibernate\Cfg\Configuration.cs:line 1138
at TexSoftUsa.Core.Dao.NHibernate.SessionManager.InitSessionFactory() in C:\Documents and Settings\rwebb\My Documents\Visual Studio 2005\Projects\TexSoftUsa\Core.Dao.NHibernate\SessionManager.cs:line 53
at TexSoftUsa.Core.Dao.NHibernate.SessionManager..ctor() in C:\Documents and Settings\rwebb\My Documents\Visual Studio 2005\Projects\TexSoftUsa\Core.Dao.NHibernate\SessionManager.cs:line 37
at TexSoftUsa.Core.Dao.NHibernate.SessionManager.Nested..cctor() in C:\Documents and Settings\rwebb\My Documents\Visual Studio 2005\Projects\TexSoftUsa\Core.Dao.NHibernate\SessionManager.cs:line 46
--- End of inner exception stack trace ---
at TexSoftUsa.Core.Dao.NHibernate.SessionManager.get_Instance() in C:\Documents and Settings\rwebb\My Documents\Visual Studio 2005\Projects\TexSoftUsa\Core.Dao.NHibernate\SessionManager.cs:line 29
at TexSoftUsa.Core.Dao.NHibernate.GenericDao`2.get_session() in C:\Documents and Settings\rwebb\My Documents\Visual Studio 2005\Projects\TexSoftUsa\Core.Dao.NHibernate\GenericDao.cs:line 28
at TexSoftUsa.Core.Dao.NHibernate.PersonDao.Authorize(AuthorizeInfo personToAuthorize) in C:\Documents and Settings\rwebb\My Documents\Visual Studio 2005\Projects\TexSoftUA first chance exception of type 'System.TypeInitializationException' occurred in TexSoftUsa.Dao.NHibernate.dll
sa\Core.Dao.NHibernate\PersonDao.cs:line 29

Name and version of the database you are using:

The generated SQL (show_sql=true):
None

Debug level Hibernate log excerpt:
Havent found that.


Last edited by Whytboy on Tue Sep 12, 2006 1:00 am, edited 1 time in total.

Top
 Profile  
 
 Post subject: Re: QueryException "in expected" error
PostPosted: Mon Sep 11, 2006 5:27 am 
Beginner
Beginner

Joined: Wed Aug 03, 2005 8:06 am
Posts: 40
Location: Netherlands
Hi,

Probably the most common question on this forum: are your xml files embedded resource?


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.