I am quite new to Grails, so I could clearly be way off base, but I suspect that your issue may have to do with the way that you are encoding the password upon user creation. Are you doing it the same when you create users using the "client side" vs. what other method you are using?
For example, when I first started using the spring-security-ui plugin, I created users with the utility that is bundled and they all failed to log in. If I understand properly, the spring-security-core was updated since spring-security-ui, which has shifted the need to encode the password in the controllers to within the User itself. For example, in the spring-security-ui UserController.save() that comes with that plugin, this occurs:
if (params.password) {
String salt = saltSource instanceof NullSaltSource ? null : params.username
user.password = springSecurityService.encodePassword(params.password, salt)
}
But my User class then has this (straight from the s2 plugin examples)
def beforeInsert() {
encodePassword()
}
def beforeUpdate() {
if (isDirty('password')) {
encodePassword()
}
}
protected void encodePassword() {
password = springSecurityService.encodePassword(password)
}
Since my User class manages encoding itself, there was a double-encoding going which was causing the logins to fail that were created with it. Could there be something similar to this going on in your application? When you are creating users other than from the client side, are you encoding the same way?