Vincent Dutat a écrit : > Hi, > > I am not able to login. I get some exceptions (see below). I debugged > the login session with Eclipse and there's something I dont understand > in method SQLSession.getEntry() : map storedFieldnames contains a string > "groups" and there's a loop searching if there's a column named 'groups" > in the table 'users', which does not exist. > I forgot to mention that nxsqldirectory is a MySQL database.
'groups' should not be in the storedFieldNames list since it's not stored in the main users table but computed as a reference. You probably need define the missing references as done in the default SQLDirectory setup: http://svn.nuxeo.org/trac/nuxeo/browser/org.nuxeo.ecm.directory/trunk/sql/resources/default-sql-directories-bundle.xml Please also have a look at how to upgrade your users directories with the instructions included in this simple script: http://svn.nuxeo.org/trac/nuxeo/browser/org.nuxeo.ecm.directory/trunk/sql/resources/upgrade-reference-tables.sql Best, -- Olivier _______________________________________________ ECM mailing list [email protected] http://lists.nuxeo.com/mailman/listinfo/ecm
