Re: getAuthenticatedUser()
Thomas Vandahl <[email protected]> Mon, 08 Apr 2013 08:32:32 +0200
| Newsgroups | gmane.comp.jakarta.turbine.user |
|---|---|
| Message-ID | <[email protected]> |
Hi Robert,
On 07.04.2013 17:58, Robert Lee wrote:
> thrown from TorqueUserManager at accountExists(user.getName());
>
> public boolean accountExists(User user)
> throws DataBackendException
> {
> return accountExists(user.getName());
> }
If I dig further down in this code I get a call to
UserPeerManager.doSelect(Criteria) which directly calls the user peer
class method doSelect() via reflection. So everything looks fine here.
The error message you get comes from a BasePeer.doSelect(). I cannot see
a call to this method in the stack trace you mention.
You may want to bump up the log level of the Turbine and Torque loggers
to DEBUG to see what really happens.
Bye, Thomas.